Name | Type | Default | Description |
Checked | bool | false | Sets or gets the check state. |
CheckMode | CheckMode | CheckMode.Both | Sets or gets the part that toggles the element. |
ClickMode | ClickMode | ClickMode.Release | Sets the click mode of the radio button. |
Disabled | bool | false | Enables or disables the ratio button. |
GroupName | string | "" | Sets or gets the widget's group name. |
InnerHTML | string | "" | Sets or gets the widget's innerHTML. |
Locale | string | "en" | Sets or gets the language. Used in conjunction with the property messages. |
Messages | object | N/A | Sets an object with string values, related to the different states of passwords strength. |
Name | string | "" | Sets or gets the widget's name. |
Readonly | bool | false | If the custom element is readonly, it cannot be interacted with. |
RightToLeft | bool | false | Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. |
Theme | string | "" | Determines the theme. Theme defines the look of the element |
Unfocusable | bool | false | If is set to true, the element cannot be focused. |
Value | string | "" | Sets or gets the widget's value. |
Name | Type | Description | Event Detail |
OnChange | EventCallback<Event> | This event is triggered when the widget is checked/unchecked. | dynamic value- A boolean value indicating the new state of the button ( checked or not )., dynamic oldValue- A boolean value indicating the previous state of the button ( checked or not )., dynamic changeType- A string flag indicating whether the change event was triggered via API or an event. |
Changed | event RadioButtonChangedEventHandler | This event is triggered when the widget is checked/unchecked. | RadioButtonChangedEventArgs |
OnCheckValue | EventCallback<Event> | This event is triggered when the widget is checked. | dynamic changeType- A string flag indicating whether the change event was triggered via API or an event. |
CheckValued | event RadioButtonCheckValuedEventHandler | This event is triggered when the widget is checked. | RadioButtonCheckValuedEventArgs |
OnUncheckValue | EventCallback<Event> | This event is triggered when the widget is unchecked. | dynamic changeType- A string flag indicating whether the change event was triggered via API or an event. |
UncheckValued | event RadioButtonUncheckValuedEventHandler | This event is triggered when the widget is unchecked. | RadioButtonUncheckValuedEventArgs |