enabled Boolean (default: true)

Sets the enabled state of all checkboxes in the CheckBoxGroup.

Example

<ul id="checkboxgroup"></ul>

<script>
    $("#checkboxgroup").kendoCheckBoxGroup({
        enabled: false,
        items: [ "one", "two", "three" ]
    });
</script>
In this article