Radio buttons

Home

Radio buttons

The radio button has the following methods:

enable enable a disabled radio button

 $("input[type='radio']").checkboxradio('enable');
				
disable disable a select.

$("input[type='radio']").checkboxradio('disable');
				
refresh update the custom select
If you manipulate a radio button via JavaScript, you must call the refresh method on it to update the visual styling.

$("input[type='radio']:first").attr("checked",true).checkboxradio("refresh");