enable
Changes the enabled state of the CheckBox.
Parameters
enable Boolean
Enables or disables the CheckBox.
Example
<input id="checkbox" />
<script>
    var checkboxInstance = $("#checkbox").kendoCheckBox().data("kendoCheckBox");
    checkboxInstance.enable(false);
</script>In this article