After tinkering around to solve this[this][1] problem, I think the core of the problem is the following:
Example (watch the value of the buttons)
<legend>Test</legend> <label for="SearchBag.EffectIndicatorAny" id="EffectIndicatorAnyLabel"> </label> <%=Html.RadioButton("SearchBag.EffectIndicator", "Any" , ViewData.Model.SearchBag.EffectIndicatorIsAny, new { @id = "SearchBag.EffectIndicatorAny" })%> <label for="SearchBag.EffectIndicatorSolid" id="EffectIndicatorSolidLabel"> </label> <%=Html.RadioButton("SearchBag.EffectIndicator", "Solid", ViewData.Model.SearchBag.EffectIndicatorIsSolid, new { @id = "SearchBag.EffectIndicatorSolid" })%> <label for="SearchBag.EffectIndicatorEffect" id="EffectIndicatorEffectLabel"> </label> <%=Html.RadioButton("SearchBag.EffectIndicator", "Effect", ViewData.Model.SearchBag.EffectIndicatorIsEffect, new { @id = "SearchBag.EffectIndicatorEffect" })%>Will generate
<legend>Effect</legend> <div class="horizontalRadio"> <label for="SearchBag.EffectIndicatorAny" id="EffectIndicatorAnyLabel"> Any </label> <input checked="checked" id="SearchBag.EffectIndicatorAny" name="SearchBag.EffectIndicator" type="radio" value="Any" /> <div class="horizontalRadio"> <label for="SearchBag.EffectIndicatorSolid" id="EffectIndicatorSolidLabel"> </label> <input id="SearchBag.EffectIndicatorSolid" name="SearchBag.EffectIndicator" type="radio" value="Solid" /> <div class="horizontalRadio"> <label for="SearchBag.EffectIndicatorEffect" id="EffectIndicatorEffectLabel"> </label> <input id="SearchBag.EffectIndicatorEffect" name="SearchBag.EffectIndicator" type="radio" value="Effect" />And will generate the second time:
<legend>Effect</legend> <div class="horizontalRadio"> <label for="SearchBag.EffectIndicatorAny" id="EffectIndicatorAnyLabel"> Any </label> <input id="SearchBag.EffectIndicatorAny" name="SearchBag.EffectIndicator" type="radio" value="Solid" /> <div class="horizontalRadio"> <label for="SearchBag.EffectIndicatorSolid" id="EffectIndicatorSolidLabel"> </label> <input checked="checked" id="SearchBag.EffectIndicatorSolid" name="SearchBag.EffectIndicator" type="radio" value="Solid" /> <div class="horizontalRadio"> <label for="SearchBag.EffectIndicatorEffect" id="EffectIndicatorEffectLabel"> </label> <input id="SearchBag.EffectIndicatorEffect" name="SearchBag.EffectIndicator" type="radio" value="Solid" />