Hi
Does anyone know how to modify the init script for an HTML editor Text attribute
The example is here https://demos.telerik.com/kendo-ui/editor/index
And I can figure out how to tweak the editor to remove elements (eg Font Families) in the Kendo Dojo, but I don't know how to translate that to AIM.
this is the sample code from the dojo
var editor = $("#editor").kendoEditor({
stylesheets: [
"../content/shared/styles/editor.css",
],
tools: [
"bold",
"italic",
"underline",
"justifyLeft",
"justifyCenter",
"justifyRight",
"insertUnorderedList",
"createLink",
"unlink",
"insertImage",
"tableWizard",
"createTable",
"addRowAbove",
"addRowBelow",
"addColumnLeft",
"addColumnRight",
"deleteRow",
"deleteColumn",
"mergeCellsHorizontally",
"mergeCellsVertically",
"splitCellHorizontally",
"splitCellVertically",
"tableAlignLeft",
"tableAlignCenter",
"tableAlignRight",
"formatting",
"backColor",
]
});