RadioButtonComponent
Represents the Kendo UI RadioButton component. Use this component to create a styled radio button in your Angular application.
<kendo-radiobutton
[checked]="true"
(checkedChange)="onCheckedChange($event)">
</kendo-radiobutton>
Selector
kendo-radiobutton
Export Name
Accessible in templates as #kendoRadioButtonInstance="kendoRadioButton"
Inputs
Name | Type | Default | Description |
---|---|---|---|
checked |
|
|
Specifies the checked state of the RadioButton. |
disabled |
|
|
Sets the disabled state of the component. |
inputAttributes |
|
Sets the HTML attributes of the inner focusable input element. Attributes which are essential for certain component functionalities cannot be changed. | |
name |
|
Sets the | |
size |
|
|
The size property specifies the width and height of the component. |
tabindex |
|
|
Specifies the |
title |
|
Sets the | |
value |
|
Provides a value for the component. |
Fields
Name | Type | Default | Description |
---|---|---|---|
input |
|
Represents the visible |
Events
Name | Type | Description |
---|---|---|
checkedChange |
|
Fires when the checked state changes.
The event does not fire when you change the state through |
blur |
|
Fires each time the component gets blurred. |
focus |
|
Fires each time the user focuses the component. |
Methods
blur |
---|
Blurs the component. |
focus |
---|
Focuses the component. |