enable

Changes the enabled state of the RadioGroup and all its radio buttons.

Parameters

enable Boolean

Enables or disables the RadioGroup.

Example

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

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

    var radioGroup = $("#radiogroup").getKendoRadioGroup();
    radioGroup.enable(false);
</script>
In this article