enable
Changes the enabled state of the RadioButton.
Parameters
enable Boolean
Enables or disables the RadioButton.
Example
<input id="radio" />
<script>
var radioInstance = $("#radio").kendoRadioButton().data("kendoRadioButton");
radioInstance.enable(false);
</script>