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.
假设我有一个窗口,它是几个组合框和 texfield 的。我想要做的是,从这个窗口获取所有选择和填充的值,以便能够发布服务器端。
我曾经使用 ComponentQuery 但只获得指定类型的字段。是否有任何解决方案可以获取任何类型的 xtype 值,例如组合框、复选框、文本字段等?
解决方案是使用 Ext.form.Panel,它包含管理字段组的功能:
var win = new Ext.window.Window({ layout: 'fit', items: { border: false, xtype: 'form', items: [] // your fields here } }); // Later console.log(win.down('form').getForm().getValues());