如何从 a 中获取项目列表Ext.form.Fieldset
?我正在尝试根据其中一个属性找到一个组件,这就是我到目前为止所得到的:
Ext.each(container.items, function (component) {
if (component.name == config.name) {
component.doUpdate(config);
}
}, me);
当然,项目是未定义的......那么我可以做些什么来访问包含在我的容器中的组件,它是一个字段集?