Ext.FormPanel,取得items

取得items,设置为不可入力。

 

// 用name.

Ext.getCmp("formPanel").form.findField('resourcesname').getEl().dom.readOnly = true;

 

// 用ID,必须指定id

Ext.getCmp("formPanel").findById('resourcesname').getEl().dom.readOnly = true;

你可能感兴趣的:(ext)