items.hiddenBoolean(default: false)
Indicates wether the item should hidden.
Example
<button id="dropdownbutton" type="button">View</button>
<script>
$("#dropdownbutton").kendoDropDownButton({
items: [
{ text: "Show Details", hidden: false }, // This item will be visible
{ text: "Advanced Options", hidden: true }, // This item will be hidden
{ text: "Export", hidden: false },
{ text: "Debug Mode", hidden: true } // This item will be hidden
]
});
</script>
In this article