items.primary Boolean
(default: false)
Specifies whether the button is primary. Primary buttons receive different styling.
Example
<div id="toolbar"></div>
<script>
$("#toolbar").kendoToolBar({
items: [
{ type: "button", text: "Primary", primary: true },
{ type: "button", text: "Standard" }
]
});
</script>