I have a really strange issue on one of my edit pages. The dropdown below never get's the selected value.

    @Html.DropDownListFor(model => model.Bodymaterial, (IEnumerable<SelectListItem>)ViewBag.Bodymaterial)

However the following dropdown on the same page does get the selectedvalue.

    @Html.DropDownListFor(model => model.Unit, (IEnumerable<SelectListItem>)ViewBag.Units)

The first one is rendered like this.

<select id="Bodymaterial" name="Bodymaterial"> <option value="EDTA">EDTA</option> <option value="SWAB">SWAB</option> <option value="UR">UR</option> <option value="FAE">FAE</option> <option value="IOF">IOF</option> <option value="SKIN">SKIN</option> <option value="HEP">HEP</option> <option value="CLOT">CLOT</option> <option value="CIT">CIT</option> <option value="CRM">CRM</option> <option value="CSF">CSF</option> <option value="RNA">RNA</option> <option value="MILK">MILK</option> <option value="BUC">BUC</option> </select>

The second on is rendered as it should be.

<select data-val="true" data-val-required="The Unit field is required." id="Unit" name="Unit"><option selected="selected" value="µl">&#181;l</option> <option value="ml">ml</option> <option value="l">l</option> <option value="µg/ml">&#181;g/ml</option> </select>

Why the second one is rendered correct and the first one not? Please help....

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The solution is to change the ViewBag.Bodymaterial property to ViewBag.Bodymaterials. Somehow the Html.DropDownListFor doesn't understand a thing of it when your Viewbag property name matches the model property name.

So the solution is. Make sure your Viewbag property isn't the same as your modelproperty. Hope this will save you guys a lot of hours....

link|improve this answer
Thanks so much for this. One quick note...I got bitten because I had a property called Title on one of my classes which turns out conflicted with the standard ViewBag.Title = "MyTitle" at the top of the autogenerated cshtml file. Took me hours to figure that out, but thanks to your post I did. – jwalkerjr Aug 10 '11 at 23:38
feedback

Your Answer

 
or
required, but never shown

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