New to Telerik UI for ASP.NET Core? Download free 30-day trial

Checked RadioButton

You can configure the RadioButton to be initially checked through its .Checked() setting.

The widget can also be checked or unchecked at any time by using jQuery.

The following example demonstrates how to use the .Checked() configuration option.

    @(Html.Kendo().RadioButton()
        .Name("MyRadioButton")
        .Label("I agree")
        .Checked(true))
    <kendo-radiobutton name="MyRadioButton" label="I agree" checked="true"></kendo-radiobutton>

See Also

In this article