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.
いくつかのコンポーネント (TextFields と Buttons) を含むツールバーがあり、他のコンポーネントの前にコンポーネント (TextField など) を動的に追加したいと考えています。
私はtbBar.add(myComponent);成功せずに試しました。
tbBar.add(myComponent);
何か案が?
使用できますExt.container.AbstractContainer.insert:
Ext.container.AbstractContainer.insert
tbBar.insert(0, myComponent);