toolbar.items.nameString
Specifies the name of the button.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
items: [
{ name: "customTool", text: "Custom Tool", click: function() { console.log("Custom tool clicked"); } }
]
}
});
</script>
In this article