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

Group

The ToolBar enables the user to select only one button from a group of buttons at a time.

This approach is useful when you create a group of mutually exclusive Toggle Buttons.

The following example demonstrates how to define a group of mutually exclusive Toggle Buttons.

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

<script>
    $("#toolbar").kendoToolBar({
        items: [
            { type: "button", text: "foo", togglable: true, group: "controlGroup" },
            { type: "button", text: "bar", togglable: true, group: "controlGroup" },
            { type: "button", text: "baz", togglable: true, group: "controlGroup" }
        ]
    });
</script>

See Also

In this article