or
<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>Kendo UI Editor Toolbar Issue</title> <link rel="stylesheet" href="http://cdn.kendostatic.com/2013.2.716/styles/kendo.common.min.css"> <link rel="stylesheet" href="http://cdn.kendostatic.com/2013.2.716/styles/kendo.default.min.css"> <style> /* uncomment following line for a workaround */ /* .k-editor-toolbar{ white-space: normal;} */ </style></head><body> <h1>Kendo UI Editor Toolbar Issue</h1> <div id="editdiv" style="display: none"> <div> <textarea id="editor" cols="30" rows="10" style="width:570px;height:300px"></textarea> </div> </div> <button id="show">Show Editor</button> <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> <script src="http://cdn.kendostatic.com/2013.2.716/js/kendo.web.min.js"></script> <script> $(function(){ $("#editor").kendoEditor({ encoded: true, tools: [ "bold", "italic", "underline", "strikethrough", "justifyLeft", "justifyCenter", "justifyRight", "justifyFull", "insertUnorderedList", "insertOrderedList", "indent", "fontName", "fontSize", "outdent", "foreColor", "backColor"] }); $("#show").on('click', function(){ $("#editdiv").show(); $(this).hide(); }) }); </script></body></html>