我在面板内部有表格。如何使用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
如何获取表单外的表单值。任何帮助?
答案 0 :(得分:0)
您需要在new
之前放置Ext.form.Panel
..
在SO
中发布问题之前仔细检查代码var myForm = new Ext.form.Panel({
id:'form1',
items:[
{ fields ...}
]
});