Disabled RadioButton
The business logic of an application often requires a certain radio button to be temporarily enabled or disabled.
The RadioButton can be configured to be initially disabled through its .Enable()
setting. The widget can also be enabled or disabled at any time by using jQuery.
The following example demonstrates how to use the .Enable()
configuration option.
@(Html.Kendo().RadioButton()
.Name("disabledRadioButton")
.Enable(false)
.Label("Disabled radio button")
.Checked(false))
<kendo-radiobutton name="disabledRadioButton" label="Disabled radio button" enabled="false" checked="false">
</kendo-radiobutton>