I would like to use radio buttons to indicate whether or not something is in need of repair on my form.
I have already referenced this question and used the answer offered by Ben Cull, but I would like the user to have to click on one of the radio buttons in order to be able to submit the form. In his answer, one of the two options will always be selected, meaning that you can submit the form without having had to select one of the options directly.
Here is an example of what I have at the moment:
<div class="form-group">
<label class="control-label">In Good Condition</label>
<br />
@Html.RadioButtonFor(model => model.InGoodCondion, "true") Good Condition
<br />
@Html.RadioButtonFor(model => model.InGoodCondion, "false") Needs Maintenance
</div>
It is also important that the input remain radio buttons.