toolbar.items.togglableBoolean(default: false)

Specifies if the button is togglable, e.g. has a selected and unselected state.

Example

<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
    toolbar: {
        items: [
            { 
                text: "Toggle Mode", 
                togglable: true,
                click: function(e) { 
                    console.log("Toggle state:", e.selected); 
                } 
            }
        ]
    }
});
</script>
In this article
toolbar.items.togglable
Not finding the help you need?
Contact Support