radio
Purpose
Generates a radio button
Examples
<g:radio name="myGroup" value="1"/> <g:radio name="myGroup" value="2" checked="true"/>
results in:
<input type="radio" name="myGroup" value="1" /> <input type="radio" name="myGroup" checked="checked" value="2" />
Description
Attributes
value
(required) - The value of the radio buttonname
(required) - The name of the radio buttonchecked
(optional) - boolean to indicate that the radio button should be checked
Source