Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm following this answer: CKEditor, AJAX Save
...and I would like to disable the 'ajaxsave' button in case the editor has not been changed.

I found out that the !editor.checkDirty() is my condition, but I don't know how to disable the button in that case.

Thanks for the help

share|improve this question

1 Answer

Does

editor.getCommand('yourPluginCommand').setState(CKEDITOR.TRISTATE_DISABLED)

work?

It doesn't work in the place I'm trying it (a custom plugin), but maybe elsewhere?

I'm trying to disable a button until the editor has focus, and haven't been able to accomplish that yet.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.