items.hiddenBoolean(default: false)
Indicates wether the item should hidden.
Example
<button id="splitButton">Command</button>
<script>
$("#splitButton").kendoSplitButton({
items: [
{ text: "Visible Option", hidden: false },
{ text: "Hidden Option", hidden: true },
{ text: "Another Visible", hidden: false }
]
});
</script>
In this article