items

Returns all radio buttons in the RadioGroup.

Returns

jQuery The radio buttons in the group.

Example

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

<script>
    $("#radiogroup").kendoRadioGroup({
        items: [ "one", "two", "three" ]
    });

    var radioGroup = $("#radiogroup").getKendoRadioGroup();
    // The result can be observed in the DevTools(F12) console of the browser.
    console.log(radioGroup.items());
</script>
In this article