Kendo UI for jQuery RadioGroup Overview

The RadioGroup allows to style and provide radio buttons functionality to list elements, set the position of the labels, attributes and custom css classes.

Kendo UI for jQuery Kendoka image

The RadioGroup is part of Kendo UI for jQuery, a professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.

Initializing the RadioGroup

To initialize the RadioGroup, use the <ul /> tag.

The following example demonstrates how to initialize the RadioGroup from an existing <ul />.

    <ul id="radiogroup"></ul>

    <script>
        $(document).ready(function(){
            $("#radiogroup").kendoRadioGroup({
                items: ["Andora", "Italy", "Malta"]
            });
        });
    </script>

Functionality and Features

See Also

In this article