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

Items

methods

Returns all checkboxes in the CheckBoxGroup.

Returns:jQuery

The checkboxes in the group.

<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.items());
</script>
Not finding the help you need?
Contact Support