focus

Fires when a radio input in the RadioGroup is focused 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.

Example - handling the change event

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

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