A user interface control GUI element, similar to a list box, which allows the user to choose one value from a list. When a drop-down list is inactive, it displays a single value. When activated, it displays (drops down) a list of values, from which the user may select one.
0
votes
0answers
21 views
How to remake the menu to be toggle
I have this script for my Vertical Menu:
<script type="text/javascript"
var menuids=["sidebarmenu1"]
function initsidebarmenu(){
for (var i=0; i<menuids.length; i++){
var ...
0
votes
1answer
31 views
jQuery current-menu-item-highlight in tandem with js anylink menu
Example of relevant page - http://brettcolephotography.com/search.html
This page - "search" - is a dropdown item under "library" in my toplevel menu.
I"m using this snippet to highlight the current ...
0
votes
1answer
19 views
Drop down menu button isn't coloured fully and there are strange gaps in between
I'm trying to fix my drop down menu but I'm having problems with the highlighted colour and the background colour/size.
When I hover it, it is not covering the full button with orange like I want it ...
0
votes
2answers
13 views
Kendo grid input data-role dropdownlist
Using Kendo Grid
I am trying to create a grid column based on a dropdown list using a template. Can someone provide a sample (if this is possible) ?
I know how to accomplish this if I were to ...
0
votes
2answers
12 views
Styling PayPal dropdown menu
I'm trying to customize the look of PayPals buttons and dropdown menus, but I can't figure out how to style the dropdown menu?
Can this even be done?
<form target="paypal" ...
0
votes
1answer
32 views
Selected value of dropdown list does not change in asp.net
I have a dropdown list in asp.net and it has data binded to it. Here it is:
<asp:DropDownList ID="dPrereq1" runat="server" DataSourceID="SqlDataSource2"
DataTextField="FullName" ...
0
votes
1answer
203 views
Select drop down from associated model
I have a model InstrumentFunding (id,title) that belongsTo InstrumentFundingGroup (id,title)
In the backend when I add/edit the InstrumentFunding I want a select dropdown to select the ...
1
vote
1answer
30 views
drop-down menu with errors
I'll add the link in the comments to the code I'm with doubt, to facilitate graft and not the question of code. ok?
My problem are a drop-down menu with jquery. When you open the jsFiddle will easily ...
0
votes
3answers
83 views
Can't make CSS dropdown menu show up below its parent?
I have a menu like this
<nav id="nav">
<ul>
<li>Home</li>
<li>Menu1
<ul>
<li>Sub1</li>
<li>Sub2</li>
</ul>
...
1
vote
1answer
32 views
DropDownList action on click event
I have a dropdownlist that already works in my view, except you have to press the submit button. Is there a way to have it work on the click event instead of the using the Submit button. I've found ...
1
vote
2answers
49 views
Dropdown with only one possible selection behaves like an on/off switch : is it crossbrowser?
Working like a switch on Chrome (v27.), FF (v21.), and IE9.
I cannot test on other browsers.
As it doesn't refers to anything else than HTML, I am about to think that it works like this, on any ...
1
vote
2answers
27 views
Pure CSS drop down menu has z-index issue when introducing a jQuery carousel beneath it
I have a pure CSS drop down navigation menu that works just fine on its own, but when I introduce the Elixon Theatre 2.5 (a 3D-ish jQuery image carousel purchased from http://www.webdevelopers.eu) ...
0
votes
1answer
36 views
Preserve and re-apply state of checkboxes and radio buttons after refresh of dropDownCheckList
I've modified the modal dialog form from JQuery-UI and added two dropdownchecklists (DDCL) one with radio buttons for models of instruments we make or service, and another for a series of services ...
0
votes
1answer
22 views
yii dropdownlist same value for many options
I was trying to give same value for few options in yii dropdownlist, but i get stuck.
Got something like this:
echo $form->dropDownList($model,'XXXXX', array(1=>array('XX','YY', 'XY', 'YX', ...
0
votes
1answer
3k views
JSP drop down list - using selected item
I have a drop down list and a form with a few textboxes. I would like to populate this form with details of selected item in the drop down list.
I'm doing this in java MVC app (or wannabe) and I ...