Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Extjs パネルに項目を追加しています。
this.add(new_el); this.doLayout();
それは正常に動作します。しかし場合によっては、最後ではなく正確な位置に {new_el} を追加する必要があります。
たとえば、最後から 2 番目のもの。
Extjs 3.2.1 で簡単な方法が見つからない
insert()の代わりに使用する必要がありadd()ます。
insert()
add()
Mypanel.insert(0,cmp1); Mypanel.insert(4,cmp2);