value Array(default: [])

The selected (checked) checkboxes values. Will also be used as a CheckBoxGroup widget value.

Example

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

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