I have a simple page with an editor, I have the "createTable" tool added but not the "tableWizard" even so the Table Wizard button still shows up.
Is there a way besides css to remove/hide this button.
$("#editor").kendoEditor({ tools: [ { name: "fontSize", items: [ { text: "1 (8pt)", value: "8pt", }, { text: "2 (10pt)", value: "10pt", }, { text: "3 (12pt)", value: "12pt", } ] }, "bold", "italic", "underline", "strikethrough", "superscript", "justifyLeft", "justifyCenter", "justifyRight", "justifyFull", "insertUnorderedList", "insertOrderedList", "indent", "outdent", "createLink", "unlink", "insertImage", "createTable", "addRowAbove", "addRowBelow", "addColumnLeft", "addColumnRight", "deleteRow", "deleteColumn", "viewHtml" ] });
