toolbar.items.clickFunction

Specifies the click handler of the button.

Example

<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
    toolbar: {
        items: [
            { 
                text: "Custom Action", 
                click: function(e) { 
                    console.log("Button clicked:", e); 
                    alert("Custom action executed!"); 
                } 
            }
        ]
    }
});
</script>
In this article
toolbar.items.click
Not finding the help you need?
Contact Support