Hybrid View
-
31 Oct 2007 3:02 AM #1
Grid.reconfigure and loadMask
Grid.reconfigure and loadMask
After a call to reconfigure, loadmask is lost. I believe that, instead of Ext.apply, it should use Ext.applyIf. So, instead of
should beCode:this.loadMask = new Ext.LoadMask(this.container, Ext.apply({store:dataSource}, this.loadMask));
TomCode:this.loadMask = new Ext.LoadMask(this.container, Ext.applyIf({store:dataSource}, this.loadMask)) ;



Reply With Quote