extjs - Changing order of tabs in Ext.tab.panel without cut-paste of code manually -
i writing code below in sencha touch 2.3. there way bring nestedlist show before formpanel (it after) without cutting , pasting code manually? each of tabpanel's component having rank or order property can set? thanks
ext.create("ext.tab.panel", { fullscreen: true, tabbarposition: 'bottom', items: [ { title: 'home', iconcls: 'home', cls: 'home', ... }, { xtype: 'formpanel', .. }, { xtype: 'nestedlist', .. } ]});
you cannot @ definition time @ runtime calling tabpanel.insert(newindex, nestedlist)
, newindex 1
, nestedlist
reference existing nested list.
Comments
Post a Comment