I have implemented a Telerik Editor COntrol In my Web Page . Can Anyone tell me How to make it Readonly. I just want to prevent user to enter anything in Editor.
Code Below--
@{ Html.Telerik().Editor()
.Name("Content")
.HtmlAttributes(new { style = "height:150px;"})
.Encode(true)
.Tools(tools => tools
.Clear()
.Bold().Italic().Underline().Strikethrough().Subscript().Superscript().Separator()
.FontName().FontSize()
.FontColor().BackColor().Separator()
.JustifyLeft().JustifyCenter().JustifyRight().JustifyFull().Separator()
.InsertUnorderedList().InsertOrderedList().Separator()
.Indent().Outdent().Separator()
.Break()).Render();
}
Please Help me ASAP..