toolbar Object

    The toolbar instance of the Kendo Editor.

    Example

    Open In Dojo
    <button  id="open">Open</button>
    <div id="editor"></div>
    <script>
      $("#open").kendoButton();
      var editor = $("#editor").kendoEditor().data("kendoEditor");
      $("#open").click(function(){
        editor.windowInstance.open();
      })
    </script>
    In this article