Indicates whether the Editor should submit encoded HTML tags.
Example
$("#editor").kendoEditor({
encoded: false
});
Allows custom stylesheets to be included within the editing area.
Example
$("#editor").kendoEditor({
stylesheets: [
"common-styles.css",
"green-theme.css",
]
});
A collection of tools that should render a button, combobox, etc, to interact with the Editor
Example
$("#editor").kendoEditor({
tools: [
"bold",
"italic",
"underline",
"foreColor",
"insertUnorderedList",
"insertOrderedList",
"createLink",
"unlink",
"insertImage"
]
});