New to Kendo UI for jQueryStart a free 30-day trial

Encoded

configuration

Indicates whether the Editor should submit encoded HTML tags. By default, the submitted value is encoded.

encoded

Boolean

Default: true

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
  value: "<p>foo</p>",
  encoded: false
});
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log($("#editor").val()); // logs "<p>foo</p>"
</script>
Not finding the help you need?
Contact Support