-
21 Mar 2010 8:18 AM #21
@Michael --
You might also take a look at the existing features that $JIT provides (comes with the ext-basex adapter extension)
It addresses many of the issues you've been discussing.Code:Ext.require('something'[ ,callback]) someContainer.add({ title : 'Tab1', xtype : 'tabpanel', require : [ 'salesGrid', ....], items : { xtype : 'salesgrid', ..... } }); $JIT('salesGrid.js'); $JIT.onClassAvailable('App.cls.SalesGrid', function(gotit){ if(gotit){ } }, App, 30000);
"be dom-ready..."
Doug Hendricks
Maintaining ux: ManagedIFrame, MIF2 (FAQ, Wiki), ux.Media/Flash, AudioEvents, ux.Chart[Fusion,OFC,amChart], ext-basex.js/$JIT, Documentation Site.
Got Sencha licensing questions? Find out more here.
-
22 Mar 2010 12:04 AM #22
wow. Thats exactly what i meant by
don't know how i missed that one (http://www.extjs.com/forum/showthrea...658#post225658)Also, i'm very interested to hear from the gurus about that, before reinventing the wheel or making something stupid
thanks very much hendricd.





Reply With Quote