enabled Boolean
(default: true)
If set to false
, the RadioButton will be disabled and will not allow the user to change its checked state.
Example
<input id="radio" />
<script>
$("#radio").kendoRadioButton({
enabled: false
});
</script>