Hi,
I am trying to add a dropdown list to the lightbox control. I am using it as part of an MVC project and can’t fnd the value.
In my controller i have
ViewData["myList"] =
new SelectList(new[] { "10", "15", "25", "50", "100", "1000" }
.Select(x => new { value = x, text = x }),
"value", "text", "15");
And the view has
<span class="label">Scheduled</span><input id="6" name="scheduled" value="1" type="radio"/>
Every:
<%= Html.DropDownList("myList") %>
When i select to save the event though the dropdown list is not passed to the controller.
Regards