<kendo:radioButton>
A JSP wrapper for Kendo UI RadioButton.
Configuration Attributes
checked boolean
The checked state of the RadioButton.
Example
<kendo:radioButton checked="checked">
</kendo:radioButton>
enabled boolean
If set to false, the RadioButton will be disabled and will not allow the user to change its checked state.
Example
<kendo:radioButton enabled="enabled">
</kendo:radioButton>
encoded boolean
Determines whether the radio label content should be rendered as an HTML string or it should be encoded.
Example
<kendo:radioButton encoded="encoded">
</kendo:radioButton>
label java.lang.String
Specifies the label content for the radio.
Example
<kendo:radioButton label="label">
</kendo:radioButton>
size java.lang.String
Sets a value controlling the size of the component.
Example
<kendo:radioButton size="size">
</kendo:radioButton>
Event Attributes
change String
Fires when the checked state of the RadioButton is changed through user interaction.
For additional information check the change event documentation.
Example
<kendo:radioButton change="handle_change">
</kendo:radioButton>
<script>
function handle_change(e) {
// Code to handle the change event.
}
</script>
Event Tags
kendo:radioButton-change
Fires when the checked state of the RadioButton is changed through user interaction.
For additional information check the change event documentation.
Example
<kendo:radioButton>
<kendo:radioButton-change>
<script>
function(e) {
// Code to handle the change event.
}
</script>
</kendo:radioButton-change>
</kendo:radioButton>