Telerik Editor CONtrol In my Web Page を実装しました。読み取り専用にする方法を教えてください。ユーザーがエディターに何も入力できないようにしたいだけです。
以下のコード --
@{ 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();
}
できるだけ早く助けてください..