enableItem

Changes the enabled state of the checkbox at a given index.

Parameters

enable Boolean

Enables or disables the checkbox.

index Number

The index of the checkbox to be enabled/disabled.

Example

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

<script>
    $("#checkboxgroup").kendoCheckBoxGroup({
        items: [ "one", "two", "three" ]
    });

    var checkGroup = $("#checkboxgroup").getKendoCheckBoxGroup();
    checkGroup.enableItem(false, 1);
</script>
In this article