Add an enable() method to Editor to enable/disable the editor widget. The following link mentions how to disable the contenteditable, but this does not disable the toolbar: http://www.telerik.com/forums/disable-readonly-and-maxlength-for-kendoeditor Something like: function(enable) { $(this.body).attr("contenteditable", enable); if (enable) { this.toolbar.element.closest(".k-editor-toolbar-wrap").find(".k-disabled-overlay").remove(); } else { this.toolbar.element.closest(".k-editor-toolbar-wrap").append("<div class='k-disabled-overlay'></div>"); } }
Hi,
Thank you for your feedback. This Feature request is still open for voting and if it gains more votes, it may be reconsidered for future planning. Currently the only available option if the one described in the article.
Regards,
Dimitar
Progress Telerik
The following How to article shows how to enable and disable Kendo UI Editor: http://docs.telerik.com/kendo-ui/controls/editors/editor/how-to/customize/enable-and-disable-editor