tags:

views:

28

answers:

1

My HTMLEditor in extjs won't be disabled I tried : disabled : true, it don't want. how to do ???

+1  A: 

disabled is not a valid config option for the HTML editor, try

detailInput.setReadOnly( true );

instead

ammoQ
Thnx dude, it' working! :)
taichimaro