* textArea 에서 수정안되게 하기
onFocus: function(){this.blur();},
readOnly: true
관리자10-07-15 15:01
124.♡.25.159
* Class 추가 및 적용하기
Ext.getCmp('domain-description').addClass('x-item-disabled2');
관리자10-07-15 15:01
124.♡.25.159
* 버튼 스타일 바꾸기???
How to style/css submit button?
var btn_submit = new Ext.Button({
id: 'wtf' //<--- this also doesn't show up in Firebug
,text: 'Save'
,type: 'submit'
,style: 'color: red !important'
,cls: 'test_btn_submit'
,ctCls: 'test_btn_submit'
,overCls: 'test_btn_hover'
})