Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何获得具有相同“itemId”的组件?使用 ExtJS 3.4。
我在具有相同 itemId 的不同 hbox 布局中有 4 个组合。我需要获取所有这些组合框的值。有没有可用的api?
form1 row1 combo1 form1 row2 combo2 form1 row3 combo3 form1 row4 combo4
请帮忙。
我通过对表单内的组件使用“hiddeName”来解决它。通过 Ext.query() 我们可以获得所有的 hbox 表单,并且从该 form.getValues() 将提供表单内组件的值。
forms = Ext.query(#formId); for (var i=0; i < forms.length; i ++) { formValues = new Ext.form.BasicForm(forms[i]).getValues(); }