Hi
I have been testing using Kendo Editor using version v2013.1.514 and it has been working with no problems.
I received an extension to my testing account a number of days and tried to upgrade to the latest version using the instruction
here , but when I do this the text box loses editor features and returns to a normal text box.
My original references are:
<link rel="stylesheet" type="text/css" href="Content/kendo.common.min.css"/>
<link rel="stylesheet" type="text/css" href="Content/kendo.default.min.css"/>
<script type="text/javascript" src="Scripts/kendo.all.min.js"></script>
Jquery is already loaded on the page ahead of the Kendo js file.
The code I use to attach the editor is as follows:
var editor = $('<div id="editor"/>');
editor.appendTo($(element));
editor.kendoEditor({
change: onChange,
tools: [
"bold",
"italic",
"underline",
"strikethrough",
"justifyLeft",
"justifyCenter",
"justifyRight",
"justifyFull",
"insertUnorderedList",
"insertOrderedList",
"indent",
"outdent",
"createLink",
"unlink",
"insertImage",
"subscript",
"superscript",
"createTable",
"addRowAbove",
"addRowBelow",
"addColumnLeft",
"addColumnRight",
"deleteRow",
"deleteColumn",
"viewHtml",
{
name: "formatBlock", items: [
// changes wrapping block to paragraph
{ text: "paragraph", value: "p" }
, { text: "H1", value: "h1" }
, { text: "H2", value: "h2" }
, { text: "H3", value: "h3" }
]
}
]
});
Can you advise how I can update to the latest version?
Thanks
Mark