Declined
Last Updated: 23 Apr 2020 09:26 by ADMIN
Simon
Created on: 15 Apr 2016 02:06
Category: Editor
Type: Feature Request
5
Add an enable method to Editor
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>");
                        }
                    }
3 comments
ADMIN
Dimitar
Posted on: 23 Apr 2020 09:26

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

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Seuthes
Posted on: 16 Apr 2020 14:27
The article shows a workaround, to implenent this behavior on your own. But this should exist out of the box. As every other kendo data editor control also has an enable-function (e.g. Dropdown, Combobox, ....). And the RTE Editor is also for data manipulation and should have and enable function included.
ADMIN
Dimitar
Posted on: 22 Sep 2017 13:20
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