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

Group

The Kendo UI for jQuery ToggleButton component exposes the ability to group several instances into one distinguished group. This gives you the advantage of molding several ToggleButton instances and accessing them altogether via the data-group attribute, which will be rendered for the elements.

The following example illustrates how to enable the group functionality

    <button id="togglebutton">
        Toggle Button
    </button>
    <script>
        $(document).ready(function(){
            $("#togglebutton").kendoToggleButton({
                group: "volumes"
            })
        })
    </script>

See Also

In this article