check
Gets or sets the checked state of the RadioButton.
Parameters
check Boolean
Checks or unchecks the RadioButton.
Returns
Boolean
- The checked state of the RadioButton.
Example
<input id="radio" />
<script>
var radioInstance = $("#radio").kendoRadioButton().data("kendoRadioButton");
radioInstance.check(true);
</script>