change

Fires when the selected radio input in the RadioGroup is changed through user interaction.

Event Data

e.sender kendo.ui.RadioGroup

The widget instance which fired the event.

e.target jQuery

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

e.oldValue String

The previous value of the widget.

e.newValue String

The new value of the widget.

Example - handling the change event

<ul id="radiogroup"></ul>

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