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