inputName String

The name attribute to be used for the radio inputs. If omitted, the id of the wrapper element will be used.

Example

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

<script>
    $("#radiogroup").kendoRadioGroup({
        items: [ "one", "two", "three" ],
        inputName: "radioName"
    });
</script>
In this article