我在面板内有表格。现在如何使用 getValues() 获取表单值?
var myForm = new Ext.form.Panel({
id:'form1',
items:[
{ fields ...}
]
});
var panel = new Ext.Panel({
id:'myPanel',
layout:'vbox',
items:[
myForm,
{
other fields
},
{
xtype : 'button',
text : 'save',
handler : function() {
}
}
]
});
现在
myForm.getValues();//not working
Ext.getCmp('form1').getValues();//not working
如何获取表单外的表单值。有什么帮助吗??