toolbar.toggleFunction
Fires when the user changes the checked state of a toggle button. Toolbar Events.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
toggle: function(e) {
console.log("Toolbar button toggled:", e.id, "checked:", e.checked);
}
}
});
</script>
In this article