I'm trying to do required validation on a list of radio buttons to force the user to select an option to continue. The validation does work but it only outputs metadata on the first radio button and it only marks the first radio button with the class input-validation-error.

Example:

<p>@Html.RadioButtonFor(x => x.Choices, SomeEnum.OptionOne)</p>
<p>@Html.RadioButtonFor(x => x.Choices, SomeEnum.OptionTwo)</p>

Resulting HTML:

<p><input class="input-validation-error" data-val="true" data-val-required="required text" type="radio" name="Choices" value="OptionOne" /></p>
<p><input type="radio" name="Choices" value="OptionTwo" /></p>

I want both radio buttons to get the validation error-class or it might risk skewing what option the user selects.

What can I do?

link|improve this question

57% accept rate
feedback

2 Answers

You could be over-thinking this one. Set a default option to 'Checked', and that will force one option to always be checked as I don't think there's a way to unselect a radio button choice.

link|improve this answer
5  
This is unfortunately not a good option when the user needs to make an informed choice. – weazl May 23 '11 at 7:51
Agreed. I am having similar issue with a gender radio button set. Can't default that. – Mike Cheel Oct 25 '11 at 19:09
feedback

What i did was to disabled the css for the radiobutton and only show the error message. (not sure IE likes this)

.input-validation-error input[type="radio"]
{
    border: 0x solid #ff0000;
    background-color: inherit;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.