如何在特定位置(索引)添加 ExtJs 组件?
我有一个带有一些组件(文本字段和按钮)的工具栏,我想在其他组件之前动态添加一个组件(例如文本字段)。
我尝试了 tbBar.add(myComponent);
但没有成功。
有什么想法吗?
I have a ToolBar with some components (TextFields and Buttons) and I would like to dynamically add a component (TextField, for example) before the other components.
I tried tbBar.add(myComponent);
without success.
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
Ext.container.AbstractContainer.insert
:You can use
Ext.container.AbstractContainer.insert
:作为附加信息,您可以使用“Ext.container.AbstractContainer.container.items.indexOf”来获取容器中特定项目的索引。
As an additional information, you can use "Ext.container.AbstractContainer.container.items.indexOf" to get an index of a specific item in your container.