<kendo:radioGroup-item>
Array of items to be rendered as radio buttons in the RadioGroup. If the array contains objects, their fields will be used for each radio button. If the array contains strings, those will be used as both value and label of the respective radio button.
Example
<kendo:radioGroup-items>
<kendo:radioGroup-item></kendo:radioGroup-item>
</kendo:radioGroup-items>
Configuration Attributes
attributes java.lang.Object
Collection of key-value pairs that would be used to generate the attributes attached to each k-radio-item element.
Example
<kendo:radioGroup-item attributes="attributes">
</kendo:radioGroup-item>
cssClass java.lang.String
Custom class that would be set on the respective k-radio-item element.
Example
<kendo:radioGroup-item cssClass="cssClass">
</kendo:radioGroup-item>
enabled boolean
Defines whether the radio button is enabled or not. By default all radio buttons are enabled.
Example
<kendo:radioGroup-item enabled="enabled">
</kendo:radioGroup-item>
encoded boolean
Determines whether the radio button label content should be rendered as an HTML string or it should be encoded.
Example
<kendo:radioGroup-item encoded="encoded">
</kendo:radioGroup-item>
label java.lang.String
Specifies the label content for the radio button.
Example
<kendo:radioGroup-item label="label">
</kendo:radioGroup-item>
value java.lang.String
Specifies the value for the radio button.
Example
<kendo:radioGroup-item value="value">
</kendo:radioGroup-item>