change

Fires when the checked state of the CheckBox is changed through user interaction.

Event Data

e.checked Object

The checked state of the CheckBox.

e.sender kendo.ui.CheckBox

The widget instance which fired the event.

Example - handling the change event

<input id="checkbox" />

<script>
    $("#checkbox").kendoCheckBox({
        change: function (e) {
            /* The result can be observed in the DevTools(F12) console of the browser. */
            console.log(e.checked);
        }
    });
</script>
In this article