Chords
Chords

Reputation: 6850

Buttons Re-Enable in CKEditor

I have the following Javascript to disable buttons on CKEditor:

CKEDITOR.replace( 'text', {
    on : {
        instanceReady : function(ev) {
            ev.editor.commands.image.disable();
            ev.editor.commands.justifyleft.disable();
        }
    }
});

This works well to disable the buttons on load, but on click of any other non-disabled buttons, they all re-enable. I tried placing the code in a few other places but had no luck.

Where is the correct place to place the disable code so it won't re-enable?

Upvotes: 0

Views: 230

Answers (1)

Reinmar
Reinmar

Reputation: 22023

If you really want to disable buttons, not hide them, then check my answer in - Show but disable wysiwyg buttons.

If you want to remove them completely then check this guide - http://docs.ckeditor.com/#!/guide/dev_toolbar

Upvotes: 0

Related Questions