items.enabledBoolean(default: true)

Toggles the enabled state of the item.

Example

<button id="dropdownbutton" type="button">Actions</button>
<script>
    $("#dropdownbutton").kendoDropDownButton({
        items: [
            { text: "Edit", enabled: true },
            { text: "Delete", enabled: false },  // This item will be disabled
            { text: "Copy", enabled: true },
            { text: "Archive", enabled: false }  // This item will be disabled
        ]
    });
</script>
In this article
items.enabled
Not finding the help you need?
Contact Support