Marouane Gazanayi
Marouane Gazanayi

Reputation: 5183

EXTJS can't disable Html editor

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

Upvotes: 1

Views: 2345

Answers (1)

Erich Kitzmueller
Erich Kitzmueller

Reputation: 36987

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

detailInput.setReadOnly( true );

instead

Upvotes: 4

Related Questions