0

我在面板内有表格。现在如何使用 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 

如何获取表单外的表单值。有什么帮助吗??

4

1 回答 1

0

你需要把new..Ext.form.Panel

在 SO 中发布问题之前仔细检查代码

var myForm = new Ext.form.Panel({
  id:'form1',
  items:[
    { fields ...}
  ]
});
于 2013-06-20T10:10:16.900 回答