select

Fires when a radio input is clicked to be selected through user interaction. If prevented, the clicked input will not be selected.

Event Data

e.sender kendo.ui.RadioGroup

The widget instance which fired the event.

e.preventDefault Function

If invoked prevents the input select action. The widget will retain the previously selected input (if any).

e.target jQuery

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

Example - handling the select event

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

<script>
    $("#radiogroup").kendoRadioGroup({
        items: [ "one", "two", "three" ],
        select: function (e) {
            if(e.target.val() === "two") {
                // Prevent selection if clicking on the "two" radio button
                e.preventDefault();
            }
        }
    });
</script>
In this article