itemsArray
A JavaScript array that contains the ToolBar's commands configuration.
For more information regarding supported commands and their configuration properties check the Getting Started topic.
Example - initialize ToolBar with Button, Toggle Button and SplitButton
<div id="toolbar"></div>
<script>
$("#toolbar").kendoToolBar({
items: [
{ type: "button", text: "Button" },
{ type: "button", text: "Toggle", togglable: true },
{ type: "splitButton", text: "SplitButton", menuButtons: [{text: "Option 1"}, {text: "Option 2"}] }
]
});
</script>
In this article