我有表格面板。
mypanel = Ext.create('Ext.fomr.Panel');
mypanel.add(Item1);
mypanel.add(Item2);
mypanel.add(Item3);
现在,我要获取mypanel中的项目列表,以便可以将其添加到另一个面板中。
我怎样才能做到这一点
最佳答案
var all = mypanel.items.getRange();
它将为您提供所有子组件的数组。
关于javascript - 在ExtJs面板中获取所有项目的功能是什么,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19761500/