Ext.form.BasicForm getValues() 【Ext2.2.1】

Ext.form.BasicForm  getValues(Boolean) 

1.默认是false,返回值是一个Object;如果设置为true(getValues(true))的话,则返回值是String。

2.form中如果有某个控件的disabled属性是true的话,在提交或其他操作时,用getValues()并不能获取这个控件中的值;此时可以用this.getForm().findField(String id ).value来获取该控件中的值,其中id可以是该控件的id, dataIndex, name , hiddenName。

你可能感兴趣的:(ext)