RadioButton
Example
Razor
<kendo-radiobutton>
</kendo-radiobutton>
Attributes
| Attribute | Type | Description |
|---|---|---|
| name | String | Sets the name of the component. |
| checked | Boolean | The checked state of the RadioButton. |
| enabled | Boolean | If set to false, the RadioButton will be disabled and will not allow the user to change its checked state. |
| encoded | Boolean | Determines whether the radio label content should be rendered as an HTML string or it should be encoded. |
| for | ModelExpression | An expression to be evaluated against the current model. |
| label | String | Specifies the label content for the radio. |
| on-change | String | The name of the JavaScript function that will handle the change event. Fires when the checked state of the RadioButton is changed through user interaction. |
| script-attributes | IDictionary<String,Object> | Sets the attributes that will be added to the script tag of the component's initialization script. |
| size | ComponentSize | Sets a value controlling the size of the component. |
| value | Object | |
| is-in-client-template | Boolean | When placing a Tag Helper within a Kendo Template, set the type to text/html and add the is-in-client-template="true" attribute. |
| deferred | Boolean | Suppress initialization script rendering. Note that this options should be used in conjunction with DeferredScripts method. |
| as-module | Boolean | Specifies whether the initialization script of the component will be rendered as a JavaScript module. |