The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
13 views

HTML Select only drops down in IE on the primary monitor

The following select list only drops down on the primary monitor in IE 8 I can click on the control and use arrow to scroll down but it will not display by clicking to display the list. Is there a ...
0
votes
2answers
37 views

Dynamically generated Select List not populating in IE <9

I have a select drop down dynamically populated by an AJAX call. It is working correctly in all browsers besides IE 8 and below. The browser isn't rendering the elements within the tag. The ...
0
votes
0answers
13 views

There is no ViewData item of type 'IEnumerable<SelectListItem>

I am trying to get a list to view in a drop down list. The list is being displayed at first but when I refresh or access a method from the controller, the application crashes due to this drop down ...
0
votes
2answers
42 views

MVC4: How to sort this selectlist/dropdownlist

I'm working with MVC4. I have this following dropdownlist/selectlist: @Html.DropDownList("EmployerID", String.Empty) ViewBag.EmployerID = new SelectList(db.Employers, "EmployerID", "Name", ...
0
votes
1answer
138 views

Internet Explorer 10 select list thick black border

I've just upgraded to IE10 and noticed all my dropdown lists (select lists) when in "dropped down" state have a thick black border on them as below. I cant inspect the element using IE's built in ...
0
votes
1answer
53 views

Add Keith Wood Datepicker to Dynamic Knockout List

I'm trying to add a Keith Wood Date Picker to a Knockout Dynamic List I've created a JS Fiddle here:http://jsfiddle.net/ELTfx/5/ I've created a unique ID for each input box that is created: ...
0
votes
1answer
46 views

Selected value not working for SelectList

I found many questions and answers related to this issue but nothing worked for me I am creating a dropdown list like this @Html.DropDownListFor(m => m.SchoolYears, new ...
0
votes
2answers
45 views

Set Selected Item in SelectList Collection

I have a class with the following property. It constructs a SelectList object from an existing list, and then sets the selected item. public SelectList ProviderTypeList { get { ...
0
votes
3answers
55 views

How to use insertBefore() in jQuery in a select list

I have a select list which is dynamically populated, and an insert button. When I click an option in the select list and then click the insert button, a popup opens. In the popup there is a text field ...
0
votes
1answer
99 views

Sorting the HTML dropdown menu (SelectList) in ASP.NET, C#

In aspx file I have: = Html.DropDownList("SiteID", ViewData["Sites"] as SelectList) In cs file I have: ViewData["Sites"] = new SelectList(pr.GetUnassignedPortfolioSites(GetAuthenticatedContext(), ...
0
votes
4answers
83 views

How to put the onchange event of a select list?

I am ready with my next problem. I have a select list which is populated as follows: <select id= "tables" name= "tables"> <option value="select">-- Select --</option> ...
0
votes
1answer
70 views

Passing array from select list to action class

I have a dynamically created multiple select list which gets populated from another select list. <select multiple size=6 width=150 style="width:150px" id="ToLB" name="ToLB" > ...
0
votes
4answers
210 views

Assigning select list values to array

I have an array initialised in script var listarray = new Array(); And have a dynamically created select list --- <select multiple size=6 width=150 style="width:150px" name="ToLB" > ...
0
votes
0answers
32 views

Existing property not found

I am trying to make a dropdown box in ASP.NET, when the View is generated it gives me an error saying Categorie_ID is not found in Model Categorie (it does exist and it's public and all). The ...
1
vote
1answer
61 views

Selectlist manipulation to merge 2 sets together in a single list

ViewBag.WList = new SelectList(_bdb.BMW.OrderBy(o => o.NAME).AsEnumerable(), "ID", "NAME"); This is how I've setup my selectlist in the controller with below the view code. ...
1
vote
1answer
62 views

SelectList pulling info from ViewBag: not creating value=“…” in generated html

I'm trying to create a client-side validated dropdown list in an MVC4 application using the Razor view engine. The code in the view to generate the dropdown list is as follows: ...
0
votes
2answers
494 views

PHP Select List - Insert multiple values in database

I'm trying to insert multiple values in the database using select list. What I got so far: HTML <form enctype="multipart/form-data" action="" method="post"> <select ...
0
votes
1answer
39 views

Issue with selecting the selcteditem in mvc 2.0 dropdownfor element in view - Always selects first element

Using the sample explanation found on MSDN for: SelectList Class (http://msdn.microsoft.com/en-us/library/system.web.mvc.selectlist_members(v=vs.90).aspx) SelectListItem ...
0
votes
1answer
200 views

MVC 4 trying to make a select list of all possible membership roles and then set it to be selected with the role the current user is in

Using MVC 4, Entity Framework and Simple membership * NEWB ALERT * Just getting started with scaffolding and CRUD. In our scenario a user can only have one role (webpages_UsersInRoles table in DB) I ...
0
votes
1answer
85 views

If not in collection then add to select list

I am working with html helpers for dropdown boxes and I want to populate a select list if an object is NOT in another ICollection property in my Model. Basically it's an app to do with teams and I ...
0
votes
2answers
372 views

ASP MVC3 Error - There is no ViewData item of type 'IEnumerable<SelectListItem>' that has the key

I've researched this a bit and haven't found an answer that quite deals with a similar situation or MVC3. In the ViewModel I'm using I have a Lists of a separate model (List<AgentId> which is a ...
0
votes
3answers
286 views

Passing Values from the SelectList Items Using ViewModel

I'd like to get the values of the selected items in dropdownlists. I am saving the files into the database with the following code: public ActionResult ...
0
votes
1answer
54 views

Refresh multiple selectlists with same class name

I have three different selectlists with the same class name. Each selectlist contains two options: <select class="select-tasks" multiple="multiple" name="SelectedTasks"> <option>Option ...
0
votes
1answer
308 views

SelectList default value

I have a drop down list in my project, with this code providing the lists values CrawlIntervalList = new SelectList(new[] {1,2,3,4,5,6,7,8,9,10}, 2); i am trying to set a default value of 2. Am i ...
-1
votes
1answer
146 views

Win32 C++ getting text from elements

While this question has probably been asked a thousand times before (pretty sure of it I have read a thousand answers). I still don't get it. Lets say I have a function that creates a ComboBox like ...
-2
votes
3answers
130 views

Validate a couple of dependent select lists with plugin jquery validate

As the title said, I need to validate 2 dependent select lists with the jQuery Validator Plugin, to force website users to choose an option from all 2 fields (they have to become required fields). If ...
1
vote
1answer
58 views

Combine 2 fields in SelectList

Currently I have SelectList that writes ID, and shows FirstName on the form. ViewBag.Person = new SelectList(db.Person, "ID", "FirstName"); How to concatenate FirstName and LastName into ...
1
vote
0answers
80 views

MVC DropDownListFor variable type issue

Here is my problem : I'm working on a MVC internet application and I try to manage users. First of all, my Edit view show the username and the role of the selected user. The roles that can choose the ...
0
votes
1answer
284 views

ViewBag select lists datetime to date

In my controller - ViewBag.DatesEnum = new SelectList(_db.blah.Where(w => w.Active == true).AsEnumerable(), "ID", "Date"); In view - @Html.DropDownListFor(m => m.blahDate, ...
0
votes
0answers
101 views

WatiN SelectList.Select() is very slow - .NET

I am using a WatiN SelectList to select multiple options from a select element on a page. I have a list of the options I want to select and I iterate over that list, selecting the options as follows: ...
0
votes
0answers
81 views

APEX doesn't refresh dynamic list after performing delete action on database

I've got a problem with APEX 4.0. I am using an Item: select list, filled with dynamic list of values (I'm using the wizard). Here's picture of application page: Thing is, when I perform delete ...
2
votes
4answers
187 views

Binding a ViewModel class that contains nested objects

I've created a class which holds objects of other complex classes. So for instance class A { public int ID { set; get; } public string MyObjectName {set; get; } public B ...
5
votes
3answers
702 views

How to have a drop down <select> field in a rails form?

I am creating a scaffold - rails g scaffold Contact email:string email_provider:string but I want the email provider to be a drop down (with gmail/yahoo/msn as options) and not a text field. How ...
0
votes
1answer
248 views

Need to populate textbox via value of selectbox, multiple textboxes and selectlists

Hey guys I have a table that has a main row, a row with a textbox and row with a selectlist that has values of premade comments that when double clicked on need to be populated into the textbox just ...
0
votes
1answer
422 views

Can't get PHP populate select list code in Joomla! BreezingForms to work

I'm using the exact code snippet (Step 1 of the Simple Version) from this page hosted by the developers of BreezingForms for Joomla!, modified only to have the correct table and field names, and the ...
2
votes
1answer
131 views

How to add a remove button to jQuery selectList Plugin

I would like to remove the default functionality of clicking anywhere on a list item for it to be removed. Instead, I'd like to add a custom remove button that deletes the list item. Here's what ...
0
votes
0answers
293 views

JQuery Mobile select list - Fixed width in native menu mode (Android)

I am using a select list using JQuery Mobile, Phonegap for Android platform. The items in the select list have varying number of characters. The width of the select list changes depending on the ...
0
votes
0answers
297 views

Setting selected value in MVC SelectList not working as expected

I have a search page, where I want users to be able to select filters from select lists which I then apply over the search space. The page works fine. What I can't get to work is resetting all of ...
0
votes
1answer
1k views

Setting APEX select list default value based on parameter

We are unfortunately moving to use APEX over our ASP/NET C# setup as apparently APEX is more cost efficiant and easier to use (although I'm still to see the later) I have a form on page 4 that lists ...
0
votes
1answer
238 views

WatiN SelectList element select by index

Ho do I select the first item in a SelectList in WatiN? Below you can see how I have my selectlist declared and below that is how I'm attempting to call the select. I don't see any options for ...
1
vote
1answer
150 views

select list association in cakephp

i am new to cake and using version 2. i have models hgcylinder.php class HgCylinder extends AppModel { //put your code here var $name= "HgCylinder"; var $belongsTo = ...
0
votes
1answer
919 views

Set Option Key and Value on Grails select list?

I am currently working on a Grails application and I am looking place a select list on the page and have its Key set to one value and the Value set to another. The code of all related elements is ...
1
vote
5answers
343 views

How to create a select list using PHP OOP

I've started recoding a PHP project into OOP. One thing I can't work out among many is how to make a dynamic select list. I have many lookup select lists to make. What's the best way to go about it? ...
1
vote
1answer
239 views

How to disable an option in Ext.field.Select?

I have the following construct to create a select: Ext.create('Ext.field.Select', { renderTo: Ext.get("displaySizes"), xtype: 'selectfield', label: 'Sizes', options: [ { ...
4
votes
1answer
220 views

Show fields based upon select value

I have the following challange. I have an entry form whereby persons can add a new entry and when approved they can also edit it. The challenge is to hide specific fields based upon a selection. When ...
2
votes
2answers
234 views

How do you Save a Selected Option in a Selection List

For my web app I have a selection list coded as below; <select name = 'job' id = 'job'> <option value = 'jobselect'>Select Profession</option> <option value = ...
0
votes
2answers
166 views

Dropdown/Select list of Grails SpringSecurity property?

I am currently working on a Grails project and would like to know the best way of showing a select list of objects from the Spring Security domain model: I know how to create a select list but I just ...
1
vote
1answer
77 views

SelectList in model not displaying in dropdownlist

refactoring my MVC page to have a better design, so here it goes. MODEL: public class MyModel { public IEnumerable<SelectListItem> SpeciesDropDown {get; set;} } Controller [HttpGet] ...
2
votes
2answers
457 views

C# mvc SelectList, how to join two fields

so the code below gives me a DropDown box with a list of names from Drivers, however it is only firstnames and I have surnames as well, how would I do this. The code I have is... ...
1
vote
1answer
2k views

MVC4 SelectList not selected default object

My select list isn't selecting the default object being brought in through code. I first create my SelectList like so: public SelectList CreateSelectList(object objSelected = null) { return new ...

1 2 3 4 5