toolbar.items.enableBoolean(default: true)

Specifies whether the control is initially enabled or disabled. Default value is "true".

Example

<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
    toolbar: {
        items: [
            { text: "Enabled Button", enable: true, click: function() { console.log("Enabled clicked"); } },
            { text: "Disabled Button", enable: false, click: function() { console.log("Disabled clicked"); } }
        ]
    }
});
</script>
In this article
toolbar.items.enable
Not finding the help you need?
Contact Support