RadioButton
Defines a radio button
Provides a wrapper for Phoenix.HTML.Form's radio_button/4
function.
All options passed via opts
will be sent to radio_button/4
, value
and
class
can be set directly and will override anything in opts
.
<Field name="answer">
<div class="control">
<label class="radio">
<RadioButton value="yes" checked /> Yes
</label>
<label class="radio">
<RadioButton value="no" /> No
</label>
</div>
</Field>