items.hidden Boolean
(default: false)
Determines if a button is visible or hidden. By default buttons are visible.
Example
<div id="toolbar"></div>
<script>
$("#toolbar").kendoToolBar({
items: [
{ type: "button", text: "MyButton 1", hidden: true },
{ type: "button", text: "MyButton 2" }
]
});
</script>