I am using the kendo editor to allow users to insert custom html images directly into their document by clicking inside the doc. I do this by calling:
editor.exec('insertText', { text: '#C#' });
and then replacing that text with an img element:
"<img src='../../../../assets/Artwork/Tag-Orange.svg' title='' height='15.25' id='' class='save_image_tag' />"
My problem is two fold: Whenever the user clicks in the editor to insert an image, the kendo editor shows a resizing box around the image:
I don't want this box to appear at all. In addition, even when the contenteditable is set to false for the editor, the user can still click on the images and a box around it will appear. I would like to prevent this from happening. Is this possible?