change

Fires when checking or unchecking a checkbox in the widget through user interaction.

Event Data

e.sender kendo.ui.CheckBoxGroup

The widget instance which fired the event.

e.target jQuery

The <input type="checkbox"> element that triggered the change.

Example - handling the change event

<ul id="checkboxgroup"></ul>

<script>
    $("#checkboxgroup").kendoCheckBoxGroup({
        items: [ "one", "two", "three" ],
        change: function (e) {
            // The result can be observed in the DevTools(F12) console of the browser.
            console.log(e.target);
        }
    });
</script>
In this article