关于ExtJs Form表单的赋值、获取、重置

【获取】

1、Ext.getCmp('id');
2、FormPanel.getForm().findField('id/name');
3、Ext.get('id/name');//前提是FormPanel在界面上显示出来了。
4.form.query('numberfield[name="smsplancount"]')[0]
form.query('[name="smsmanager"]')[0]

【赋值】

var value="属性值";
1、 fs.form.findField(id/name).setValue(value);
2、 Ext.get(id/name).setValue(value);
3、 Ext.getCmp(id).setValue(value);

【重置】

有三种方法能实现form表单的重置,假设var fs=new Ext.form.FormPanel({...}); 

(1)fs.form.reset();//重置form 
(2)fs.getForm().getEl().dom.reset();//重置form 
(3)Ext.getCmp('fs').form.reset();

【参考网址】
http://www.stepday.com/topic/?447
posted @ 2014-04-30 13:34  大漠孤烟~  阅读(2677)  评论(0编辑  收藏  举报