EXT 表单内容获取的方法

方法1 几乎所有的“容器”你都可以这么获得里面的项目

form.items.items[0].getValue();
方法2
form.getForm().findField('user_name').getValue();
方法3 你先给textfield加个id 好像下面这样
{xtype:'textfield',id:'userName',name:'user_name',fieldLabel:'用户名'}
然后
Ext.getCmp('userName').getValue();

你可能感兴趣的:(ext)