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

Current

methods

Get the currently selected Button.

Returns:jQuery

the jQuery object representing the currently selected button.

<ul id="buttongroup">
    <li>Option 1</li>
    <li>Option 2</li>
    <li>Option 3</li>
</ul>

<script>
    $("#buttongroup").kendoButtonGroup({
        select: function(e) {
            var index = this.current().index();
/* The result can be observed in the DevTools(F12) console of the browser. */
            console.log(index);
        }
    });
</script>
Not finding the help you need?
Contact Support