item

Returns the checkbox at the specified index.

Parameters

index Number

The index of the requested checkbox.

Returns

jQuery The checkbox at the specified index that has been requested.

Example

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

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

    var checkGroup = $("#checkboxgroup").getKendoCheckBoxGroup();
    // The result can be observed in the DevTools(F12) console of the browser.
    console.log(checkGroup.item(1));
</script>
In this article