2011-07-08 91 views
8

我正在向Extjs面板添加項目。如何將項目添加到Extjs面板的確切位置

this.add(new_el); 
this.doLayout(); 

它工作正常。但在某些情況下,我必須在確切位置添加{new_el},而不是最後。

例如倒數第二個。

不能在ExtJS的3.2.1

+0

可能重複的[如何在特定的位置(索引)添加一個ExJs組分?](http://stackoverflow.com/questions/6629363/how-to-add-an-exjs-component-在-A-特定位置索引) – HDave

回答

12

找到簡單的方法,您應該使用insert()代替add()

Mypanel.insert(0,cmp1); 
Mypanel.insert(4,cmp2); 
相關問題