Save $100 with our Black Friday deals!

Get $100 OFF with promo code BLACKFRIDAY2024 at checkout until November 30.

See Pricing

Still using Radzen Studio?
Achieve more with Radzen Blazor Studio

Radzen Blazor Studio is our new flagship product and vision of how rapid Blazor application development should be done.

Go to Radzen Blazor Studio

RadioButtonList (Blazor)

This article demonstrates how to use the RadioButtonList component. Check also the component guide and API reference.

RadioButtonList Properties

Name Type Default Description
Name string ‘radiobuttonlist’ + index suffix Unique name of the RadioButtonList.
Items array null RadioButtonList options.
Value string null RadioButtonList value.
Orientation string ‘horizontal’ ‘horizontal’ or ‘vertical’.
Disabled boolean/expression false Is RadioButtonList disabled.
Visible boolean/expression true Is RadioButtonList visible.
Data array null RadioButtonList data.
TextProperty string null RadioButtonList data text property name.
ValueProperty string null RadioButtonList data value property name.

RadioButtonList Events

Name Type Default Description
Change event null Change event of the RadioButtonList. Selected value as event argument.

For more info about event actions please visit event actions in our documentation.

Blazor declaration

<RadzenRadioButtonList Change="@Changed">
    <Items>
        <RadzenRadioButtonListItem Text="Orders" Value="1" />
        <RadzenRadioButtonListItem Text="Employees" Value="2" />
        <RadzenRadioButtonListItem Text="Customers" Value="3" />
    </Items>
</RadzenRadioButtonList>