How will I populate a ASP.NET MVC List box? Make it non selectable? how will i remove the selected items from the listbox
|
|
You want an unselectable select?
The idea is that your model needs to have an Model:
Action (relevant bit)
|
|||
|
|
|
http://stackoverflow.com/questions/382747/mvc-modelbind-listbox-with-multple-selections Might give you the first answer. You can disable the items in the listbox, but not the list box itself. If you set Visible to false, the whole listbox will not display. Doing something like:
Will make the items non selectable. |
|||
|
|