New to Kendo UI for jQueryStart a free 30-day trial

Item

methods

Returns the checkbox at the specified index.

Parameters:indexNumber

The index of the requested checkbox.

Returns:jQuery

The checkbox at the specified index that has been requested.

<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>
Not finding the help you need?
Contact Support