New to Kendo UI for jQuery? Download free 30-day trial

Binding

The following example demonstrates how to create a CheckBoxGroup and bind it to an array of strings.

Open In Dojo
   <ul id="checkboxgroup"></ul>

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