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

Popular posts from this blog

how to proxy from https to http with lighttpd -

android - Automated my builds -

python - Flask migration error -