Back to Devexpress

RadioButton

aspnetmvc-8993-components-data-editors-extensions-radiobutton.md

latest2.0 KB
Original Source

RadioButton

  • Dec 17, 2020
  • 2 minutes to read

RadioButton is a button control that can be selected, but not cleared, by an end-user. While paired with other radio buttons, RadioButton enables end-users to select a single option from a group of choices.

Implementation Details

RadioButton is realized by the RadioButtonExtension class. Its instance can be accessed via the ExtensionsFactory.RadioButton helper method, which is used to add a RadioButton extension to a view. This method’s parameter provides access to the RadioButton settings implemented by the RadioButtonSettings class, allowing you to fully customize the extension.

RadioButton ‘s client counterpart is represented by the ASPxClientRadioButton object.

Declaration

RadioButton can be added to a view in the following manner.

View code (ASPX):

csharp
<%
    Html.DevExpress().RadioButton(
        settings => {
            settings.Name = "RadioButton1";
            settings.Text = "Check me";
            settings.Checked = false;
            }
        )
        .Render();
%>

View code (Razor):

csharp
@Html.DevExpress().RadioButton(
    settings => {
        settings.Name = "RadioButton1";
        settings.Text = "Check me";
        settings.Checked = false;
    }).GetHtml()

Note

The Partial View should contain only the extension’s code.

The code result is demonstrated in the image below.

Main Features

  • Native Rendering

  • Appearance Customization

  • Built-in Validation

  • Full-Featured Client-Side API