Tagged Questions
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
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
2answers
408 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
754 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
735 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
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
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 ...