如何将项目添加到 Extjs 面板的确切位置

发布于 2024-11-19 00:57:02 字数 185 浏览 3 评论 0原文

我正在向 Extjs 面板添加一个项目。

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

效果很好。但在某些情况下,我必须在确切位置添加 {new_el},而不是最后。

例如倒数第二个。

在 Extjs 3.2.1 中找不到简单的方法

I am adding an item to Extjs panel.

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

It works fine. but in some cases I have to add {new_el} at exact position, not last.

For example penultimate one.

Can't find easy method in Extjs 3.2.1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

作死小能手 2024-11-26 00:57:02

您应该使用 insert() 而不是 add()

Mypanel.insert(0,cmp1);
Mypanel.insert(4,cmp2);

You should use insert() instead of add().

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