0
votes

I have tried the following:

Disable or make the Kendo Editor Read-only

and also disabled keydown/keyup/keypress, but there is an event the fires underline, bold, etc. via shortcuts (ctrl + b, ctrl + u).

I want disable everything and make the editor read only or disabled.

1

1 Answers

0
votes

I doubt there is a true way to disable the editor so I found a work around just now.

$("#editorSelector").off("keyup keydown keypress");

I turn off the event and rebind the events.