enabled Boolean (default: true)

Sets the enabled state of all radio buttons in the RadioGroup.

Example

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

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