Tagged Questions
The selectlistitem tag has no wiki summary.
6
votes
3answers
2k views
How can I convert an enumeration into a List<SelectListItem>?
i have an asp.net-mvc webpage and i want to show a dropdown list that is based off an enum. I want to show the text of each enum item and the id being the int value that the enum is associated with. ...
3
votes
2answers
470 views
How to code a C# Extension method to turn a Domain Model object into an Interface object?
When you have a domain object that needs to display as an interface control, like a drop down list, ifwdev suggested creating an extension method to add a .ToSelectList().
The originating object is a ...
3
votes
2answers
3k views
Multiselect list not showing selected items in c# mvc using linq2sql
I've tried many different ways to pass the selected items to the multiselect list with no luck. Finally, I tried this, which I think should display all the items as selected and still nothing in the ...
2
votes
2answers
289 views
Do a correct union on two List<SelectListItem>
retval.AddRange(oldList.Union(newList));
Both the oldList and newList are declared here
List<SelectListItem> oldList = new List<SelectListItem>();
List<SelectListItem> newList = ...
2
votes
2answers
4k views
Strongly typed view with a SelectList for DropDownList via ViewData: type mismatch on submit
I am trying to create a form in ASP.NET MVC2 RC 2 that is based on a calendar event object. The object has eventTypeId which is a System.Int32 that I need to populate with via a select list.
The ...
1
vote
1answer
172 views
Html.DropDownListFor does not bind boolean SelectList
I have this code the constructs a select list as a boolean response
var responseList = new List<SelectListItem>();
responseList.Add(new SelectListItem { Text = "Going", Value = ...
1
vote
1answer
189 views
Asp.net mvc select list
I need to create a select list, preserving the state, which is not part of the model passed to the view. I suppose I should be using a ViewBag to pass a List to the View ? Any advise on implementation ...
1
vote
2answers
399 views
ASP.NET MVC DropDownListFor does not honour SelectListItem.Selected
I am using DropDownListFor to render a dropdown list in a view. Somehow the rendered list does not select the SelectListItem with Selected set to true.
In the controller action:
var selectList = ...
1
vote
1answer
284 views
MVC2 SelectedListItem not binding to ViewModel
I am having a problem with a selectlistitem, the values of which are being retrieved from a database.
It is displaying the list of items in the view, but it is not passing through (POSTing) the ...
1
vote
1answer
749 views
Asp.Net MVC with Drop Down List, and SelectListItem Assistance
I am trying to build a Dropdownlist, but battling with the Html.DropDownList rendering.
I have a class:
public class AccountTransactionView
{
public IEnumerable<SelectListItem> Accounts { ...
1
vote
1answer
734 views
Binding a simple sort dropdown to a list in MVC
Im trying to bind a dropdownlist in ASP.NET MVC to a class. Luckily for me this will be a number between 1 and 10, however I'm not getting the output in my HTML that I would expect. I've set both the ...
0
votes
2answers
46 views
SelectList Selected Value Issue
I have some code, the second of which works and the first doesn't. The idea is that the user has selected a site, and then it shows the information for this site, selecting a site automatically ...
0
votes
0answers
24 views
SelectExtensions.DropDownList resets SelectListItem's Selected property
I found a weird behavior when using the SelectExtension's DropDownList method. I create a IEnumerable<SelectListItem> where one of them has it's Selected property is set to 'true'. However, when ...
0
votes
1answer
41 views
Get Nth item from SelectList
I'm trying to unit test a function which returns a SelectList.
How can I retrieve an item from the SelectList to verify that my model is being constructed correctly?
...
0
votes
1answer
73 views
ASP.NET : generate ListBoxItems from values in database
I want to populate a listbox, so I have to define an array of ListBoxItem.
The data is stored in a database.
This is my original method:
public IEnumerable<String> ...
0
votes
1answer
36 views
Check if text appears on the text property of any element in SelectList
SelectList tempList =
Chatham.Web.Models.Shared.DropDownData.IndicationsGroup(
SessionManager.Company.EntityID,
ICConstants.IndicationsCalculatorGroupType);
foreach ...
0
votes
1answer
183 views
order Ienumerable<SelectListItem> according to a string array
I need to order an Ienumerable select list with respect to the values in an array
my code is shown below:
model.RequestedSegments = EvaluationServices.GetSegmentlistItems.Where(a => ...
0
votes
1answer
133 views
What is the best way to populate DropDownLists with many entries in ASP.NET MVC
I have a DropDownList that particpates in an Address View Model.
Is it best to store the list of 170 or so countries in a database and load them into a collection on the View Model, or is it better ...
0
votes
1answer
116 views
how do i put backcolor on a selectListItem
i have an asp.net mvc page and i want to have a dropdown list with different background color like this page
i have the following code to display a dropdown list
<label>Data Source: ...
0
votes
3answers
324 views
Easiest way to specify the selected option to a dropdown list in ASP.NET MVC
I have a list of options (IEnumerable< SelectListItem >) in my model that I want to use in multiple dropdowns in my view. But each of these dropdowns could have a different selected option.
Is ...
0
votes
1answer
2k views
SelectListItem not selected even when explicitly set to true
This question relates to ASP.NET MVC 2 RC (December drop). The basic problem is that when creating a drop down list with a default selected value, the "selected" attribute is either not rendered to ...