パネル内にフォームがあります。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 の値を取得する方法。何か助けて??