4

我在我的一个页面中使用Kendo UI Editors。下面是使用的语法。

$("#editorKendo1").kendoEditor();
$("#editorKendo2").kendoEditor();

我想在某些条件下禁用或将两个编辑器设为只读,并在其他条件下使其可编辑。

以下是我迄今为止获得的类似要求的链接。 我如何在 asp.net mvc http://www.telerik.com/community/forums/aspnet-mvc/editor/making-the-editor-disabled-readonly.aspx中禁用剑道编辑器

我正在使用Kendo UI Web,版本 - 2012.3.1114 任何人都可以帮我解决这个问题。

谢谢

4

1 回答 1

10

那里的答案对剑道仍然有效。如果您只想显示内容,则不需要编辑器。

反正

$($('#editorName').data().kendoEditor.body).attr('contenteditable',false)
于 2013-06-21T19:51:56.213 回答