Hello, i'm trying to customizate the DocumentEditor Toolbar, like described in this link (https://ej2.syncfusion.com/javascript/documentation/document-editor/how-to/customize-tool-bar/), but, i'm using Javascript ES5 and all modifications i made, none works.
My code:
var toolItem = {
prefixIcon: "e-de-ctnr-lock",
tooltipText: "Disable Image",
text: "Disable Image",
id: "Custom"
};
var documenteditorContainer = new ej.documenteditor.DocumentEditorContainer({
enableToolbar: true,
toolbarItems: [toolItem, 'Undo','Redo','Separator','Image','Table','Hyperlink','Bookmark','Comments','TableOfContents','Separator','Header','Footer','PageSetup','PageNumber','Break','Separator','Find','Separator','LocalClipboard','RestrictEditing']
});
documenteditorContainer.appendTo('#documentEditor');
Could you help me?
Thank you.