value String

The selected (checked) radio button value. Will also be used as a RadioGroup widget value.

Example

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

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