items.cssClass String
Custom class that would be set on the respective k-radio-item
element.
Example
<ul id="radiogroup"></ul>
<script>
$("#radiogroup").kendoRadioGroup({
items: [{
value: "one",
label: "Label one",
cssClass: "custom-class"
},{
value: "two",
label: "Label two"
},{
value: "three",
label: "Label three"
}]
});
</script>