New to Kendo UI for jQueryStart a free 30-day trial

Add

methods

Adds new command to the ToolBar widget. Accepts object with valid command configuration options.

Parameters:commandObject

An object with valid command configuration options.

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

    var toolbar = $("#toolbar").data("kendoToolBar");
    toolbar.add({
        type: "button",
        text: "Just added",
        togglable: true
    });
</script>
Not finding the help you need?
Contact Support