To disable telerik:RadEditor c#

1.9k Views Asked by At

How to disable the telerik:RadEditor? i gave editor.enabled= false but the control is not visible.

2

There are 2 best solutions below

0
On BEST ANSWER

Try using editor.enableEditing(false)

See the telerik forum here. The question is around disabling the editor from the client-side. Hopefully this helps.

0
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.