items.templateString|Function
Specifies what element will be added in the ToolBar wrapper. Items with template does not have a type.
If
overflowTemplateis not defined for a template command, than the command will be treated asoverflow: "never".
Example
<div id="toolbar"></div>
<script>
$("#toolbar").kendoToolBar({
items: [
{
template: "<span>Toolbar template</span>"
}
]
});
</script>
In this article