I use the kendo editor and though ... I want to disable the editing toolbar. Indeed, all I want is to be able to format the text field (in bold, italics ...), not allowing the user to interact with my text area, and does not have a toolbar that will be very confusing for the user. I want it to appear as a normal readonly text environment , and nothing more. I tried this:
$("#output").kendoEditor();
$($('#output').data().kendoEditor.body).attr('contenteditable', false);
But it does not work. Any ideas?
Edit
I just want to have a simple text area, I want to hide the toolbar and programmatically process the contents of the text field, as it is read-only.
source
share