toolbar.itemsArray
Configures the items collection of the toolbar.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
items: [
"open",
"save"
]
}
});
</script>
Apart from the built-in tools, the ImageEditor fully exposes the ToolBar.items API. This way you can specify any custom tools in the widget using the components available in the ToolBar itself.
In this article