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

    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:

    Open In Dojo
        <ul id="checkboxgroup"></ul>
    
        <script>
            $("#checkboxgroup").kendoCheckBoxGroup({
                items: [ "Blue", "Green", "Red" ],
                layout: "horizontal"
            });
        </script>