Tagged Questions

A dropdown list is something which is used to select a value from a given set of options. A dropdown list can be something from which you can pick only one option or multiple options. In case you can select multiple options then it is called a multi select dropdown.

learn more… | top users | synonyms

21
votes
6answers
12k views

How do I use jQuery to select all children except a select element

I have a div (let's say the id is "container") with many elements in it, including a select element. I'd like to select all everything in the div except the select. Things I've tried: $("#container ...
11
votes
2answers
15k views

jQuery change() on <select> and firefox

I have a dropdown that triggers an ajax call when its changed: $('.travel-to').change(function(){ $.ajax({ type: "GET", url: "/inc/rates/rates-viewer.php", data: ...
9
votes
2answers
7k views

Create a jQueryUI 1.8 Button menu

Now that jQueryUI 1.8 is out, I was browsing through the updates and came across the new Button widget, and in particular one of the demos with the SplitButton with a dropdown. This demo seems to ...
8
votes
3answers
35k views

JQuery create select list options from JSON, not happening as advertised?

How come this doesn't work (operating on an empty select list <select id="requestTypes"></select> $(function() { $.getJSON("/RequestX/GetRequestTypes/", showRequestTypes); } ...
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 ...
7
votes
5answers
27k views

Change color and appearance of drop down arrow

I want to change the default appearance of the arrow of a dropdown list so that looks the same across browsers. Is there a way to override the default look and feel of the drop down arrow using CSS or ...
6
votes
2answers
11k views

jQuery: Get selected option from dropdown

I am trying to get the selected option from a dropdown and populate another item with that text, as follows. IE is barking up a storm and it doesn't work in Firefox: $('#ddlCodes').change(function() ...
6
votes
3answers
5k views

ASP.NET MVC get dropdown list value

In ASP.NET MVC, how can I get a selected dropdown list value from a posted form?
6
votes
5answers
7k views

How to make dropdown menu like “delicious” and “google”?

I want to make a dropdown menu like delicious has at this http://delicious.com/search?context=all&p=sql&lc=1 page. In this page click the arrow which is with "Search" button. On click it ...
5
votes
4answers
4k views

use jquery to select a dropdown option

Hay, i was wondering if it's possible to get jQuery to select an option, say the 4th item, in a dropdown box? <select> <option></option> <option></option> ...
5
votes
3answers
4k views

Making a drop down list readonly but still submitting its value

I am using the Html.DropDownList helper in ASP.NET MVC and I would like to make it read-only. Unfortunately, I also need it to submit its value on a form post. I have found (through a similar ...
5
votes
5answers
1k views

sort items in a dropdown list without the first item

I have the following code to sort the items in a dropdown list: function sortDropDownListByText(selectId) { $(selectId).html($(selectId + " option").sort(function(a, b) { return a.text == ...
5
votes
4answers
2k views

How can I create a “Drop-Down” menu in a Java Swing toolbar?

I've created a drop-down menu on my Swing JToolBar. But it doesn't create behave the way I want. I'm aiming for it to work like Firefox's "Smart Bookmarks" button. It disappears when the user selects ...
5
votes
3answers
4k views

Magento: how to prefill values of a product's dropdown attribute

I'm building a Magento shop for a customer and would like to add an attribute to all products that functions as a dropdown list. Like the 'Manufacturer' attribute. However, instead of manually ...
5
votes
5answers
8k views

Sorting dropdown list using Javascript

i want to sort the drop down items using javascript,can anyone tell me how to do this.
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 ...
5
votes
3answers
4k views

Cross Browser dropdown/popup menu over a flash movie

I need to make my dropdown menu apprear over the top of a flash movie, how is this done cross browser? It can be done, IBM do it: http://www.ibm.com/us/ so do GE: http://www.ge.com/ Setting the the ...
4
votes
1answer
51 views

In Winforms, how do I override the OnDropDown method of a ComboBox?

I'm trying to use the method found here to create a custom combo box that displays a selection grid instead of the built in list drop down. The solution basically just overrides the OnDropDown ...
4
votes
7answers
203 views

select 1st option in a multi group dropdown with jquery

I have dropdown very similar to this: <select id='someSelect'> <option value="0">---select one---</option> <optgroup label="Bikes"> <option ...
4
votes
2answers
164 views

Is there any way to force the dropdown (select) arrow control to be on the right?

I am using direction:rtl in a select element. It does exactly what I need which is: expand the options to the left when dropdown is open options text is right aligned Question: Is there any way to ...
4
votes
2answers
234 views

Dropdown select in form not working in Internet Explorer

This is my first question on this site. I have an issue with Internet explorer. My contact form works fine in Chrome, Safari and FF but not in IE. Here is the link for my form. Basically the ...
4
votes
2answers
918 views

dropdown with selected item, how to get its name/ label using capybara

Given the following dropdown: <select id="my-dropdown" name="my-dropdown"> <option value="1">Peter</option> <option value="2" selected>Pan</option> </select> ...
4
votes
3answers
183 views

How to create a view similar to the system notification area in android?

I'd like to have a view in my activity, which initially stays at the top of the screen like a little bar, but when you tap on it it should expand down, like the system notification area. I haven't ...
4
votes
2answers
112 views

Is there a better way to do drop down menues in jQuery?

I'm trying to use jQuery's hover to do drop down menues. So the first thing I try is: <ul id="menu"> <li> <ul> ... </ul> </li> ... </ul> $(" ...
4
votes
1answer
204 views

Accomplishing This Style of Drop-Down Menus in jQuery

I was browsing the web and found this site. I noticed how the nav bar drop-down works, and I want to implement something similar on my website. Afer going into the source code of the page, I found ...
4
votes
1answer
752 views

WPF: How to have custom button template that uses system's button background by default?

I am creating a style that changes a ControlTemplate of a Button (it actually adds arrow on the right, so that the button looks like dropdown button (which is missing in wpf)). Inside of template, I ...
4
votes
2answers
4k views

Java: How can I add a JMenu to a JPanel or create a drop down button?

is there any way to add a JMenuItem to a JPanel so that I can create a button to show multiple options, like the latest news button in firefox, under the address bar? I can only add JMenu and ...
4
votes
2answers
4k views

CSS Menu does not appear over flash

I have a drop-down/multi-level CSS menu on a page. The menu however doesn't appear over a flash chart I have. The apparent fix seems to be to put wmode:transparent (or opaque), but that doesn't work ...
4
votes
1answer
21k views

How to set selected index of dropdown to 0 when text of textbox is changed?

I am using a dropdown to populate a textbox. But if preferred value is not present in dropdown then user directaly enter value in that textbox. If user selects value from dropdown first and then he ...
4
votes
4answers
3k views

Is there a max number of options (values) in HTML drop down control?

Does anyone know how many options a drop down list can have? Is it unlimited? How many before performance degrades?
3
votes
2answers
152 views

Dismissing the iOS safari picker with javascript

I am looking for a way to dismiss the select picker found in the iOS Safari once a option element is being selected. We can trigger the whole thing with OnChange, but the picker is still open. I ...
3
votes
2answers
106 views

retain dropdown selection on refresh [closed]

Possible Duplicate: retaining selected dropdown option on postback I have a dropdown when user selects the option, the value is passed on to the same url as querystring refreshing the page. ...
3
votes
2answers
40 views

accessible css dropdown menu

I have a problem with a pure css accessible dropdown menu, I'm tryng to navigate within the keyboard, I mean tab button, but the second level doesn't focus, here is a sample: ...
3
votes
2answers
192 views

AJAX / Javascript / PHP Triple Drop Down Menu from different tables

I've been searching for this for so many days but still couldn't figure it out. I want to make a drop down menu for searching and the flow would be like this: 1st DropDown Search By : Category ...
3
votes
3answers
141 views

DropDownList with multiple columns per row

Is there a plugin or any other way to make a dropdownlist with multiple columns of data for each row? I want to show and select the project number, but I want to also show the name, city, state, ...
3
votes
1answer
188 views

Display content based on Select Menu dropdown change

I'm currently using the following to display an input field when I change a dropdown menu selection: <select id="delivery_country" name="d_country" onchange=" if (this.selectedIndex==14){ ...
3
votes
3answers
182 views

Dropdown (Select menu) problem

I have MySQL tables looking like that regions table id | region ------------------- 1 | Region1 2 | Region2 ... and schools table region_id | school ------------------- 1 ...
3
votes
2answers
193 views

Google Account DropDown in Jquery

Are there any jQuery or Javascript solutions for creating a menu similar to the one Google uses for their user accounts? Below is an image of what I'm talking about. If you login to Google you can see ...
3
votes
1answer
83 views

Is this sub menu positioning possible with CSS alone?

Apologies for the vague question, I can't think of a succinct, descriptive one. I'm making a drop down menu out of unordered lists, which look a bit like this.... <ul id="menu"> ...
3
votes
3answers
519 views

Separator in a Wicket DropDownChoice

Is there some obvious way to add a separator to the list of options in a Wicket DropDownChoice? In my case I'm populating the selection with two types of domain objects from my datasource. I guess I ...
3
votes
1answer
371 views

MVC3 EditorForModel Dropdown

I am using @Html.EditorForModel() in several places, and I was just wondering if there is a simple attribute to specify that something should be a dropdownlist in the view model? An approximate ...
3
votes
4answers
82 views

Why is my variable null?

I'm currently editing a working project with some experience on PHP. I know a bit about the basics but I know only a little about MVC and Code-Igniter so ofcourse I will be facing some problems. My ...
3
votes
3answers
2k views

Blank HTML SELECT without blank item in dropdown list

How implement subj? when i write: <form> <select> <option value="0">aaaa</option> <option value="1">bbbb</option> </select> </form> ...
3
votes
5answers
2k views

Javascript Dropdown Show/Hide Div

I am using the following code to show/hide divs based on a dropdown selection. However, I want each higher number to keep the previous divs displayed and simply add another div. The user is selecting ...
3
votes
5answers
315 views

keeping css drop down menu item highlighted with php

My Website On the link above you can see that I have a CSS drop down menu in my site. It works fine, however, I want the top level items to stay highlighted when I'm on the page they represent. I ...
3
votes
4answers
1k views

WPF ComboBox popup placement : Bottom and aligned to the right edge

I'm trying to create a ComboBox with a non-standard dropdown alignment. Basically, I want the dropdown to be below the ComboBox, but aligned with the right edge of the ComboBox instead of the left ...
3
votes
0answers
934 views

BlackBerry Torch 9800 webkit browser issues with Javascript events

I seem to have a huge issue with the BlackBerry Torch 9800 webkit browser. That browser support HTML5 and javascript. The look of a web page developed for mobile device in HTML 5 looks the same for ...
3
votes
2answers
1k views

Dropdown Menus Appearing Behind Flash Video

My drop down menus are appearing behind my flash videos (JW Player) in Chrome and Internet Explorer. The problem does not occur in FireFox and Safari. I've read so many solutions relating to changing ...
3
votes
2answers
1k views

JSF Tree in a dropdown

I want to display a tree like structure in my dropdown in JSF. Basically the select items are in a heirarchy and I would like that to be evident in the dropdown. Is it possible ?
3
votes
1answer
458 views

Selenium: How to set test on dropdown box?

In Spring I generated form create.jspx with some edit boxes and some dropdown select boxes. The form than sould be tested in Selenium IDE, but after recording test case the case cant' be replayed. ...

1 2 3 4 5 25