如何在Kendo Editor上的富文本编辑器模式和文本/ HTML编辑器模式之间切换?
答案 0 :(得分:0)
编辑器有一个内置的viewHtml
工具,可用于原始HTML编辑。
http://docs.telerik.com/kendo-ui/api/javascript/ui/editor#configuration-tools
<textarea id="editor">
<p>I am a paragraph.</p>
</textarea>
<script>
$("#editor").kendoEditor({
tools: [
"viewHtml"
]
});
</script>