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))