1. 程式人生 > >ExtJs中TextField與TextArea的只讀屬性設定

ExtJs中TextField與TextArea的只讀屬性設定

如果是TextField,動態設定只需要呼叫readOnly=true;或者是readOnly=false;就可以啦!

var aa=new Ext.form.TextField({
   name:'aa',
   fieldLabel:'測試',
   value:'123'
});

aa.readOnly=true;

但是ExtJs3.0以前的版本不可以直接這麼設定,需要這樣設定:

aa.getEL().dom.readOnly=true;

如果是TextArea,動態設定用readOnly屬性就不行了!

必須用setDisabled(true);或者setDisabled(false);

var rw=new Ext.form.TextArea({
   xtype:'textarea',
   fieldLabel:'駁回理由',
   width : 220,
   name : 'detail',
   id:'rwcont',
   value: reasion,
   maxLength:160,
        maxLengthText:'最多隻允許輸入160箇中文字元'
});

rw.setDisabled(true);