New to Kendo UI for jQuery? Start a free 30-day trial
Binding
Updated over 6 months ago
The following example demonstrates how to create a CheckBoxGroup and bind it to an array of strings.
<ul id="checkboxgroup"></ul>
<script>
$("#checkboxgroup").kendoCheckBoxGroup({
items: [ "one", "two", "three" ]
});
</script>