How do I create a ListBox in ASP.NET MVC with single selection mode?
|
I am assuming you are looking for a select box visually like the ListBox, meaning with multiple rows displayed, but functionally like the DropDownList (allowing for only one selection). It looks like there is not a particularly easy way to pull this off using ListBox. I'd suggest using Html.DropdownList, similar to this:
The size attribute will give the select box the look of a ListBox. Also, you will need to change your ViewData item from MultiSelectList to SelectList. |
|||||||||
|
|
Following Code Works for me, <%=Html.DropDownList("list1", lstItem, new {@size = 5})%> where lstItem represents the List of SelectListItem |
|||
|
|
|
the below should do it: The object is translated in a list of attributes for the select element. Html.DropDownList("list1", new Object {@rows = 5, @multiple = false} ) |
|||
|