Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
23answers
42k views

How can I get this ASP.NET MVC SelectList to work?

I create a selectList in my controller, to display in the view. I'm trying to create it on the fly, sorta thing .. like this... myViewData.PageOptionsDropDown = new SelectList(new [] {"10", ...
29
votes
4answers
11k views

How can I add an item to a SelectList in ASP.net MVC

Basically I am looking to insert an item at the beginning of a SelectList with the default value of 0 and the Text Value of " -- Select One --" Something like SelectList list = new ...
13
votes
8answers
10k views

Set selected value in SelectList after instantiation

Am I right to think that there is no way to set the selected value in the C# class SelectList after it is created? Isn't that a bit silly?
7
votes
2answers
458 views

Why does this javascript run so slow in IE when all it does is modify a select list?

I'm working on having a multi-select list where you can have items selected and then click an "Up" or "Down" button that will allow you to reorder those items within the list. I've got a simple ...
7
votes
3answers
8k views

There is no ViewData item of type 'IEnumerable<SelectListItem>' that has the key 'xxx'

There are a couple of posts about this on Stack Overflow but none with an answer that seem to fix the problem in my current situation. I have a page with a table in it, each row has a number of text ...
5
votes
5answers
87 views

Refactor two methods that generate a SelectList into a single method

I have the following two methods that get data from my DB and return a populated SelectList object (including an "All" option value) that I then pass onto my view. The problem is that they are almost ...
5
votes
2answers
7k views

select list usage in asp.net mvc

I am working on an MVC site that is the first my company has done, one of the things I find myself doing a lot is creating selectlists in a controller, putting them in viewdata and reading them when ...
5
votes
3answers
2k views

Somebody explain me Html.DropDown and it's dearest friend SelectList

If you check my earlier questions you may have noticed I just don't get the SelectList and Html.DropDown(). I find it intrigueing that I seem to be the only one in this. So maybe I should try to ...
4
votes
1answer
4k views

Drupal 7: Best Practice for a Dynamic Select List in Drupal 7

What is the best practice for a dynamic select list in Drupal 7? a) Create a Field with dummy options via the UI and overriding the options with hook_form_FORM_ID_alter or b) Creating a dynamic ...
4
votes
2answers
2k views

How can I restore the order of an (incomplete) select list to its original order?

I have two Select lists, between which you can move selected options. You can also move options up and down in the right list. When I move options back over to the left list, I would like them to ...
3
votes
4answers
211 views

ASP.NET MVC ViewModel with SelectList(s) best practice

I noticed that in the NerdDinner application that if the ModelState is invalid for a dinner, it merely returns the view for the model: if (ModelState.IsValid) { ... ...
3
votes
3answers
101 views

Populate selectlist with latest 5 years

How do i create a list with the last 5 years in it? i.e. 2011 to 2007 but i dont want to hardcode 2011, i want the most recent 5 years based on the current year
3
votes
3answers
135 views

Dealing with select lists

I got a model defined as IEnumerable<MyViewModel> which I tried to use to create a select list (Html.SelectListFor). But I couldn't figure out how to do it. Which made me look at the plain ...
3
votes
1answer
839 views

Binding to a SelectList in MVC

Once again I'm confronted with a "This shouldn't be this ?*!# hard" situation. Problem: I want to use a form in MVC for creation of an object. One of the elements of the object is a set of limited ...
3
votes
3answers
1k views

Selecting an item in an HTML SELECT list using keyboard doesnt trigger the CLICK event

I have an HTML select list which, when an item is selected, must show different information beneath it. The onclick or JQuery change events are triggered when a select list item is selected by being ...
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
3answers
1k views

.net MVC, SelectLists, and LINQ

I am new to using the Html.DropDownList in the MVC framework and am having a hard time understading how to select the data out my database to bind to the DropDownList. Is there an easy way to return a ...
3
votes
2answers
2k views

mvc - dropdownlist not populating correctly within Edit view

I'm building my first MVC application, having followed the 'NerdDinner' tutorial through. In creating a dropdownlist from a SelectList in the same way, however, I'm running into an issue. For some ...
3
votes
1answer
2k views

Html.DropDownList and modelbinding

Why isn't modelbinding working on a DropDown? What am I doing wrong? To illustrate my problem, I did the following: Created a new asp.net MVC project (beta1) Created the following class: ...
3
votes
2answers
2k views

Count selectlist items (count IEnumerable)

As you can see here and here I'm not a good friend of asp.net MVC's SelectList. This time I'm wondering how to count the items in it. I want to show a label instead of a dropdown if the possible items ...
2
votes
1answer
42 views

Why doesn't StringLength work with ASP.NET MVC unobtrusive validation?

Why does StringLength cause spurious errors on a select list: [StringLength(2, MinimumLength = 2)] should require that the values be strings of length 2. However, it causes client-side errors even ...
2
votes
1answer
119 views

ASP.NET mvc : HOWTO: Update database after editing multiselectlist (listbox)

I'm really stuck at this: I have two listboxes populated from a database. I want to copy items from one list to the other. Then the changes must be saved in the database. This is what I've got: ...
2
votes
1answer
319 views

How to make my trivial ASP.NET MVC DropDownList Work?

Hi I am trying to make a DropDownList work in my trivial app. I am an beginner. I have already spent several days looking at various instructions in books and at the web, so proberly if you direct me ...
2
votes
2answers
286 views

SelectList Object selectedValue issue

I'm having troubles with the selectedValue option for SelectedItems, for some reason it won't select the item despite it being in the list... My Controller: public ActionResult ...
2
votes
1answer
254 views

Sort SelectList in specific order

So I have a SelectList being generated in this method: public static SelectList HolidayDays() { SelectList retval = GenerateKeyValueList<HolidayCity>(HolidayCityHelper.GetFriendlyName, ...
2
votes
1answer
633 views

Implementing a graphical select list using icons via jQuery or other

I am implementing an HTML form. For one of the fields (weather) the user must choose one of a set of options (sunny, cloudy, rainy, etc.) So basically I'm looking for a nice replacement for ...
2
votes
4answers
225 views

Jquery - three select lists, deactivate the other two if one is value is selected

I have three drop down select lists, when a value from one of the list is selected, I want the other two to be greyed out and inactive. I have id wrappers around each select list that I'm ...
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 ...
2
votes
2answers
982 views

ASP.NET MVC Model vs ViewData For Select Lists

I have an ASP.NET MVC application with quite a few drop-down lists and multi-select lists. Essentially, a lot of lists of options. My question is; is it better to pass these lists to the view as part ...
2
votes
5answers
2k views

ASP.net MVC: Creating SelectList in the view or action?

I'm just wondering where people are creating their SelectList - in the action or the view. I have seen examples of both and the one that makes the most sense to me is doing it in the action and have ...
2
votes
2answers
811 views

C# Asp.Net MVC - Combine Select Lists?

I have these two methods below. One returns a list of manufacturers based on the handset ID and the other returns a list of Handsets based on the Handset ID (relationship via handset ID). How can I ...
2
votes
4answers
3k views

Best way to create a dynamic Select (Dropdown) list?

I'm using jQuery and jqGrid. I'm trying to populate a select list dynamically, one for each row and I need to add a click event to it. When the select list is being populated I grab the index of the ...
1
vote
1answer
28 views

Selected value in asp.net MVC 4.0 dropdownlist

I am trying to make a dropdown list using "DropdownListFor" function and I want to have a value selected in it. I have searched a lot and found the similar kind of solution of having a SelectList ...
1
vote
4answers
107 views

set select list to current date using Jquery

I am using Jquery mobile, and I have these two select lists, I want to set the selected options for the to lists to the current day and month .. edit I am using JqueryMobile the code for 2 lists : ...
1
vote
1answer
190 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
1answer
264 views

Can I send a SelectList through the UIHint Control Parameters?

Can I send a SelectList through a Data Annotation? Something like... [UIHint("DropDownList", "", new SelectList(new[] {"one","two","three"}))] public virtual int? OptionID { get; set; } I don't ...
1
vote
2answers
44 views

Return muliple selectlist with one actionresult

I'd like to display 2 SelectList in one View. So obviously, I can only use 1 ActionResult to render the view. public ActionResult IndexStudents(Docent docent, int lessonid, int classid) { ...
1
vote
2answers
402 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
388 views

ModelBinding enum values for selectlist and selected item

Ok, this was supposed to be a question asking for help getting my form to work properly. In the process of creating an example to post, I figured out what the fix is. So now it's a become a question ...
1
vote
2answers
141 views

trigger a 'change' action when a dropdown is 'selected' not when the dropdown list values are changed

I've got a few dropdown lists which are created dynamically. I've done a decent job of keeping my code DRY, but I have a small problem. I instruct jQuery to trigger an event when a select list ...
1
vote
2answers
72 views

mvc selectlist separation of concerns

Shouldn't a controller in MVC be completely ignorant of how the data it gives to the view will be displayed? My question relates to the SelectList. Should the controller be clever enough to know ...
1
vote
3answers
545 views

WatiN KeyPress and keyDown events not doing anything on SelectList

I'm getting started coding tests using watiN and I'm having trouble simulating a user pressing a key when a SelectList is in focus. This is to test that a client-side JavaScript function that is ...
1
vote
3answers
390 views

Creating a 2 Level Interdependent Select List

I have browsed StackOverflow and found a couple questions/answers that are close but not exact for my situation. I am following this example: ...
1
vote
3answers
271 views

How to drop a select list by 'onmouseover'?

How can I drop down a select list with onmouseover instead of clicking it. Select list cannot be clicked in javascript to emulate that. eg: onmouseover="(this.click())" Also setting the 'size of ...
1
vote
1answer
612 views

combo box button textfield Java

How to changue this code import javax.swing.*; import java.awt.*; import java.awt.event.*; public class ComboBox { private static final ActionListener Event = null; JComboBox combo1; ...
1
vote
2answers
1k views

Watin- cant select an item from a selectlist dropdown using vb.net

net/watin application and I am trying to select and item from a combobox on a client's website. I can use watin to drop the list down and select (highlite) an item from the list but the selected item ...
1
vote
1answer
120 views

Why is there no option selected in the drop down list?

I'm confused as to why the corresponding option in the select list is not being selected. When I step through the loop, item.DisciplineId = 2, but School is not selected ("Choose" still is). Any ...
1
vote
1answer
775 views

Rendering issue using SelectList from manually defined SelectListItems in MVC 2

I am using ASP.NET MVC 2 (.NET 3.5), and need to manually define what shall be an Options list. When I do so I get a drop down menu, with each of the manual entries reading ...
1
vote
1answer
458 views

Create Selectlist with separator in Html Helper

I'm trying to build a select list that will contain some prioritised values, then a separator, and then the rest of the values. I need to do this in a Html Helper, as I will get the values that will ...
1
vote
1answer
197 views

Populating properties on my Model with values from a SelectList when I post

I'm building an Asp.net MVC 2 application. I have an entity called Team that is mapped via public properties to two other entities called Gender and Grade. public class Team { public virtual ...

1 2 3