encoded Boolean (default: true)

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

    Example

    Open In Dojo
    <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>
    In this article