1

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

4

2 回答 2

2

您可以通过 javaScript.Check 下面的代码禁用富文本编辑器。

  var editorInfo = $("#Content").data("tEditor");
        editorInfo.body.disabled = true;
于 2015-02-03T03:13:27.140 回答
1

不幸的是,目前这是不可能的。您需要做的是将文本呈现在一个典型的 HTML 元素中IFRAMEDIV作为典型的 HTML 元素,然后将元素的样式设置为与您的编辑器相似(高度、边框、背景等)。在用户看来,它将被“禁用”。

于 2013-05-22T16:19:28.900 回答