toolbar.overflowOpenFunction
Fires when the overflow popup container is about to open. Toolbar Events.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
overflowOpen: function(e) {
console.log("Overflow popup is opening");
}
}
});
</script>
In this article