Kendo UI for jQuery RadioButton Overview
The RadioButton allows you to provide radiobutton functionality to <input />
elements, style them, disable the RadioButton, and set an encoded or decoded label.
The RadioButton is part of Kendo UI for jQuery, a
professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
Initializing the RadioButton
To initialize the RadioButton, use the <input />
element.
The following example demonstrates how to initialize the RadioButton from an existing <input />
element.
<input id="radiobutton" />
<script>
$("#radiobutton").kendoRadioButton();
</script>