enable
Changes the enabled state of the CheckBoxGroup and all its checkboxes.
Parameters
enable Boolean
Enables or disables the CheckBoxGroup.
Example
<ul id="checkboxgroup"></ul>
<script>
$("#checkboxgroup").kendoCheckBoxGroup({
items: [ "one", "two", "three" ]
});
var checkGroup = $("#checkboxgroup").getKendoCheckBoxGroup();
checkGroup.enable(false);
</script>