change
Fires when the checked state of the RadioButton is changed through user interaction.
Event Data
e.checked Object
The checked state of the RadioButton.
e.sender kendo.ui.RadioButton
The widget instance which fired the event.
Example - handling the change event
<input id="radio" />
<script>
$("#radio").kendoRadioButton({
change: function (e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(e.checked);
}
});
</script>