如何将项目添加到 Extjs 面板的确切位置
我正在向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用
insert()
而不是add()
。You should use
insert()
instead ofadd()
.