I am trying to display a progress bar in a grid (Ext JS) and get this error:
Object function has no way to defer
What is this "magic" method? What does it do? And why is he not found? The code:
renderer: function (value, meta, rec, row, col, store){ var id = Ext.id(); (function(){ new Ext.ProgressBar({ renderTo: id, value: 0.5 }); }).defer(25); return '<span id="' + id + '"></span>'; }
source share