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 

form の外部で form の値を取得する方法。何か助けて??

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 に答える