New to Kendo UI for jQuery? Download free 30-day trial

    Separator

    The Separator can act as a delimiter between the ToolBar commands.

    The following example demonstrates how to define a Separator.

    <div id="toolbar"></div>
    
    <script>
        $("#toolbar").kendoToolBar({
            items: [
                { type: "button", text: "Button 1" },
                { type: "separator" },
                { type: "button", text: "Button 2" }
            ]
        });
    </script>