execute
Fired when a command is executed.
Event Data
e.sender kendo.ui.ImageEditor
The widget instance which fired the event.
e.command String
The name of the command.
e.options Object
The options of the command.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
imageUrl: "https://demos.telerik.com/kendo-ui/content/shared/images/photos/2.jpg",
execute: function(e) {
console.log("Command executed:", e.command);
console.log("Command options:", e.options);
}
});
</script>
In this article