items.template String|Function

Specifies what element will be added in the ToolBar wrapper. Items with template does not have a type.

If overflowTemplate is not defined for a template command, than the command will be treated as overflow: "never".

Example

<div id="toolbar"></div>

<script>
    $("#toolbar").kendoToolBar({
        items: [
            {
                template: "<span>Toolbar template</span>"
            }
        ]
    });
</script>
In this article