The Editor allows users to create rich text content by means of a WYSIWYG interfance. The generated widget value is an XHTML markup.

Getting Started

Creating an Editor from existing HTML element

  <textarea id="editor" rows="10" cols="30"></textarea>

Initialize the Kendo Editor

  $(document).ready(function(){
      $("#editor").kendoEditor();
  });

Configuring the Editor

If no specific tools are defined, the Editor will create its default set of tools for text formatting.

Specifying a set of Editor tools

   $(document).ready(function(){
      $("#editor").kendoEditor({
         tools: [
         "bold",
         "italic",
         "underline",
         "foreColor"
         ]
      });
  });