items.group String
Assigns the button to a group. Applicable only for buttons with togglable: true
.
Example
<div id="toolbar"></div>
<script>
$("#toolbar").kendoToolBar({
items: [
{ type: "button", text: "foo", togglable: true, group: "myGroup" },
{ type: "button", text: "bar", togglable: true, group: "myGroup" },
{ type: "button", text: "baz", togglable: true, group: "myGroup" }
]
});
</script>