toolbar.items.commandString
Specifies the command of the button.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
items: [
{ command: "crop" },
{ command: "resize" },
{ command: "undo" }
]
}
});
</script>
In this article