See the telerik forum here. The question is around disabling the editor from the client-side. Hopefully this helps.
0
AzNjoE
On
in the code-behind you could do
editor.EditModes = EditModes.Preview;
This will force the editor to be only in Preview mode and not allow the user to change the mode to Design or Html mode. Which disables the toolbar buttons and the edit area is made read only.
Try using
editor.enableEditing(false)
See the telerik forum here. The question is around disabling the editor from the client-side. Hopefully this helps.