Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How will I populate a ASP.NET MVC List box? Make it non selectable? how will i remove the selected items from the listbox

share|improve this question
2  
possible duplicate of MVC ModelBind ListBox With Multple Selections – George Stocker May 13 '10 at 12:16
1  
Your second question is answered here: stackoverflow.com/questions/1379125/… – George Stocker May 13 '10 at 12:17
If your list is non selectable how will you select the item to remove? – azamsharp May 13 '10 at 15:00

2 Answers

up vote 7 down vote accepted

You want an unselectable select?

 <%= Html.ListBoxFor( m => m.Choices, 
                      Model.ChoicesMenu,
                      new { disabled = "disabled" } ) %>

The idea is that your model needs to have an IEnumerable<SelectListItem> that will hold the possible key/value pairs for your selection, here the ChoicesMenu. The actual values chosen, if it could be selected, would be posted in the Choices property. Use the signature that allows you to specify html attributes and make it disabled prevent selecting it. You can, of course, do this (or undo it) with javascript.

Model:

 public class ViewModel
 {
     public int[] Choices { get; set; }
     public IEnumerable<SelectListItem> ChoicesMenu { get; set; }
 }

Action (relevant bit)

 var model = new ViewModel
 {
     ChoicesMenu = db.Items
                     .Select( i => new SelectListItem
                      {
                          Text = i.Name,
                          Value = i.ID.ToString()
                      } );
 } 
share|improve this answer

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:

ListBox.Items[X].Selected = false

Will make the items non selectable.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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