Layout
The CheckBoxGroup widget supports two types of layout
- "horizontal" and "vertical". By default the radio buttons are rendered vertically.
The following example shows how to set the CheckBoxGroup layout:
<ul id="checkboxgroup"></ul>
<script>
$("#checkboxgroup").kendoCheckBoxGroup({
items: [ "Blue", "Green", "Red" ],
layout: "horizontal"
});
</script>