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

Change

events

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.

<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>
Not finding the help you need?
Contact Support