如何在特定位置(索引)添加 ExtJs 组件?

发布于 2024-11-19 13:09:24 字数 130 浏览 4 评论 0原文

我有一个带有一些组件(文本字段和按钮)的工具栏,我想在其他组件之前动态添加一个组件(例如文本字段)。

我尝试了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

那小子欠揍 2024-11-26 13:09:24

您可以使用 Ext.container.AbstractContainer.insert

tbBar.insert(0, myComponent);

You can use Ext.container.AbstractContainer.insert:

tbBar.insert(0, myComponent);
凯凯我们等你回来 2024-11-26 13:09:24

作为附加信息,您可以使用“Ext.container.AbstractContainer.container.items.indexOf”来获取容器中特定项目的索引。

var index = container.items.indexOf(component);
container.insert(index, newComponent);

As an additional information, you can use "Ext.container.AbstractContainer.container.items.indexOf" to get an index of a specific item in your container.

var index = container.items.indexOf(component);
container.insert(index, newComponent);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文