Reputation: 5183
My HTMLEditor in extjs won't be disabled I tried : disabled : true, it don't want. how to do ???
Upvotes: 1
Views: 2345
Reputation: 36987
disabled
is not a valid config option for the HTML editor,
try
detailInput.setReadOnly( true );
instead
Upvotes: 4