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
2answers
37 views
Show options on dropdown menu from a column - PHP MYSQL
I have a following code:
<?php
session_start();
include("control/connect.php");
$query = NULL;
$query= "select * from category";
$result = mysql_query($query);
?>
...
0
votes
1answer
19 views
Floated menu element covers first element of sub-menu in IE7 in two-row menu layout
could you please help with one issue?
When you hover over News and Media, the first element of the sub-menu is hidden behind the menu element.
This problem occurs only in IE7, in all other browsers ...
0
votes
4answers
63 views
Populating two drop down lists based on selection of item in 1st dropdownlist without database connectivity
I have three drop down list ddl1, ddl2 and ddl3.
Now on selecting an item of ddl1 the respective items in ddl2 and similarly ddl3 should be populated.
Eg:- If I select "India" in ddl1 then ddl2 ...
0
votes
1answer
41 views
get selected value of a drop down which is populated with results from an SQL query
So I have a drop down populated with the names based on an SQL query. I want to be able to see which option the user selected before they pressed submit and use this as a variable on a separate php ...
2
votes
3answers
49 views
Avoid repeating records displaying in MySQL / PHP
This is a very basic PHP MySQL question that I need answered.
When displaying data from a table, I need to avoid/prevent duplicates. I am trying to populate a drop down menu with a list of countries ...
1
vote
2answers
25 views
Get Dropdown Text Given Value
I have an Ajax call that will return the value of the drop down. I want to use this value to get the text to populate a table.
What would be the correct syntax for:
var dropDownText = ...
0
votes
2answers
53 views
How to set background color width of dropdown menu items in IE7?
I have the following navigation bar: http://jsfiddle.net/jajq3/embedded/result/
For posterity, this is the structure:
<div id="navBar">
<ul style="float: left; padding-left: 5px;">
...
0
votes
0answers
12 views
Page getting hanged while working with multi select check box
I am using a multi select check box, located around the bottom of my page. A user can check one or more values from the drowdown. Everything works fine until the values in select exceeds the page. ...
1
vote
0answers
39 views
adding custom drop down list in tinymce
I have to display a drop down list in tinymce. I googled to find any tutorial or any good example but I just found that code:
// Adds a menu to the currently active editor instance
var dm = ...
0
votes
0answers
27 views
Drop-down dependency using Django and Python
im still new in using django and python.. I am working on a drop-down dependency in HWname and HWType. I tried many codes but they didn't worked.. Here are my codes. Please help me :)
What I want to ...
2
votes
1answer
38 views
when I use the DropDownList1_SelectedIndexChanged to be the trigger of UpDatePanel,it dosn't work
And the tip is the “DropDownList1” didn't find “DropDownList1_SelectedIndexChanged”
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
...
0
votes
1answer
117 views
Adding icons to bootstrap drop down menu items
I am trying to add some icons to a bootstrap dropdown menu ( see fiddle below )
as you can see the icon gets added, but it pushes the men u item to the right and that menu item is not aligned with the ...
0
votes
2answers
61 views
Retrive a date from a database in three dropdown list
I need to retrive a date from database in three dropdown lists.
Mysql & PHP code:
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
else {
$sql = ...
0
votes
1answer
68 views
Drop-down menu in iOS alert
I'm trying to set labels to certain areas of an app dynamically so that some of them show while others are hidden. I have an alert that prompts for text to fill these labels with, but I know the ...
0
votes
2answers
57 views
Need my div dropdown menu to hide text when not hovered
I'm trying to do a dropdown menu with a div. The transition on the div is fine and everything is working great. But I don't know how to get the text that's in the dropdown area do be hidden when I'm ...
0
votes
1answer
16 views
show selected display text of dropdown in template
I am reusing code from a view to export to excel.
My form (edited for clarity, hope I am not falsifying semantics):
class MyForm(ModelForm):
id = forms.IntegerField(required=False, ...
0
votes
1answer
41 views
Dropdown Action Menu with Web Link
As i tried to show on image, in my app i 've an address bar, dropdown action menu and a webview.
My question is ; how can i add described web links which is when clicked goes to link in webview?
...
0
votes
4answers
59 views
CSS position absolute and width of parent container in percent
I'm trying to build a HTML/CSS dropdown menu which is flexible in width. Due to the position:absolute for the second level of the navigation, I don't get the width of the first level. Removing the ...
2
votes
4answers
55 views
CSS menu transitions not working
I'm trying to add some transition effects onto my css dropdown menu, but wherever I put the transition code in it doesn't seem to work.
transition: all 2s ease-in;
I'm trying to get the transition ...
0
votes
3answers
42 views
Hide and show div with dropdown with jQuery
I want to show the div #content when I select the option #fine-art from the dropdown and hide it when I select any other option.
<select id="main-selector">
<option>Select an ...
0
votes
2answers
36 views
YUI 2.5. Populating a dropdown from XML
Currently editing an application built using YUI 2.5 and Perl. I need to populate a dropdown from an xml file, and only specific rows are to be used depending on the attributes of the node. ...
0
votes
0answers
72 views
CSS up arrow on horizontal drop down menu
Website I'm developing is on this address:
http://webdizajntest.com/amphiro/
Now i'm using Wordpress plugin Ubermenu for menu dropdown. I'm having a problem inserting up arrow on that submenu trough ...
0
votes
4answers
130 views
Updating one drop down menu according to option selected in another drop down menu from database
EDITED AFTER SUGGESTIONS (STILL UNRESOLVED):
I have 2 drop down menu's, one called Country, and the other called City. When the user chooses a country from the Country drop down menu (hereafter a ...
0
votes
0answers
20 views
Kendo cascasding DropDownlists and available dropdown items
I'm using KendoUI to create a cascading dropdownlists.
The problem is the second and third dropdowns in the cascade only have 1 of the 3 items that should be in them.
The HTML
<div ...
2
votes
2answers
53 views
Prevent CSS drop-down menu from extending beyond screen to the right
I have a horizontal CSS drop-down menu in the header of my site. The menu is floated right in the header also. I am having a problem where when you mouseover the menu and you get the drop downs, if ...
-2
votes
1answer
25 views
CSS Dropdown Glitchy
The dropdown works when you rollover the top buttons but when you try to move down to the dropdown menu it disappears.
http://vistaazulresort.com/
0
votes
1answer
56 views
Set specific row from database as default value for drop down menu
this is my first time asking for help and I know very little about coding. This was mostly done for me.
On a product page I have two drop down menus. One with a version select and one with a size ...
0
votes
1answer
60 views
How do I call a web service to get xml data displayed in a treeview in asp.net
I am trying to use a asp:dropdownlist control to be able to choose values from a local database I have created within my app_data folder. They are stock exchange symbols. When I select a symbol from ...
-4
votes
0answers
61 views
What would be the best way to write a “Mega menu” using only javascript, css, and html that would be easy to update? [closed]
So basically what I am looking for is a menu with 5 content tabs and inside of each of those tabs is about 7 items. Each of these items would need to have the potential of having a submenu of its ...
0
votes
2answers
28 views
Action on selecting option from drop down menu
I just started working with drop down menus. I was trying to figure out how I could make something happen once the user chooses a particular option from the drop down menu.
For example, say I have ...
1
vote
4answers
85 views
Reset dropbox automatically to first value after the users hit submit button PHP
After the user hits the submit button, how do I reset the drop down menu to the "blank" option of the the menu? I am using a MVC set up with php and HTML, and the concrete5 library. THANKS IN ...
2
votes
0answers
41 views
jqueryui dropdownchecklist bind to an element: no widjet method error
I try to bind the jqueryui dropdownchecklist with no effect. I bind thru Drupal, all the .js files (taken from the last plugin download package) and .css files are linked (except for smoothness.js):
...
1
vote
2answers
59 views
jQuery mouseover and mouseleave drop down menus
The following displays a menu:
<a href="#" id="cityclick">ONZE WAARDEN</a>
<div id="citydrop">
<div class="dropbottom">
<div class="dropmid">
...
1
vote
1answer
38 views
javascript mirror dropdown selection in another dropdown
I have two forms on my page. One is hidden initially. Later, after the first form is submitted the first is hidden and the second similar but more compact form is displayed instead.
I want the second ...
1
vote
2answers
81 views
styling drop down/navigation bar actionbarsherlock font
In the application I have, I would like to have the actionbar drop down's font to be white. Till now I have the following style:
<style name="Theme.MyApplications" ...
0
votes
1answer
31 views
Delayed appearance of 2nd menu, after answer is entered in first menu
I needed a secend menu to appear, prompted by the answer selected in the first menu. The second menu appears as it is supposed to, however it appears too quickly (as it appears before the first menu ...
-1
votes
2answers
95 views
Dropdown list with PHP and mysql database with relation to each other
I am new in PHP. I have a database like the attached in the dropbox file. It has 4 column
Division Name
District Name
Thana Name
Union name
These are the administrative unit of our country. I want ...
0
votes
2answers
121 views
ASP .NET Dropdownlist.Selectedvalue not updating iterating trough dinamically created controls
I have a problem with selectedvalue proerty in a dynamic created dropdownlist control not updating:
I have a custom control of type ctlProductosFormatos containing a combo and other controls. I ...
1
vote
0answers
54 views
Problems with my Dropdown Menu in IE7
I'm currently developing a new site:
http://v-designs.ch/Blackbeats/
I tried to adjust it to older browsers but there's a problem in IE7.
I know IE7 is quite outdated but still I'd like to make it ...
-1
votes
1answer
55 views
Javascript for 3 dynamic drop down
I'm working on a make model year car database and I have the following form that selects model based on make.
<?
$hostname = "";
$database = "";
$username = "";
$password = "";
...
0
votes
1answer
43 views
want to additional dropdown menu with Jquery - cant make it work properly using clone()
I'm new to coding so please be gently - here goes:
I'm having a bit of a problem and was hoping someone could help.
I have a dynamic drop down menu for people to choose subjects and I would like to ...
0
votes
2answers
55 views
Select Option from dropdown list
I have a dynamic dropdown list which has value attribute set up as "4107,2632". When I apply filter I have only one value as 4107 which is available in the dropdown option in value attribute. The ...
0
votes
1answer
64 views
Close keyboard when scrolling in dropdown on autocompletetextview in Android
I have an autocompletetextview which I have linked it to a webservice so it shows me suggestions as I type. Now how can I hide the soft keyboard when the user starts scrolling through the autocomplete ...
2
votes
1answer
87 views
Wrapping the bootstrap drop-down menu and trigger in separate parent divs
As title says, I've seen bootstrap dropdown samples which data-toggle="dropdown" and class="dropdown-menu" are siblings.
So, I am wondering if it's possible to toggle dropdown when it's wrapped in ...
0
votes
0answers
40 views
How to fetch selected drop down value in partial cshtml page
I have a partial page in which I have to fetch a selected value form ddlb. The ddlb is on another partial page.
cshtml code:-
<div id ="destancillary">
<hr style="border:1px thick" ...
0
votes
0answers
39 views
Detect mouseover in an HTML dropdown menu
Here, I'm trying to display an alert message when a dropdown menu is moused over, but I can't get it to work using onmouseover. Is it possible to detect a mouseover of an element in a dropdown list?
...
0
votes
3answers
73 views
Is it possible to include HTML elements in a dropdown list?
Using a HTML select menu, I'm trying to create a dropdown list with HTML elements instead of plain text, but each element isn't displaying properly inside the dropdown menu:
<select>
...
0
votes
0answers
36 views
Entity Framework DropDownList binding
I'm completely new to the Entity Framework world so please bear with me.
I'm trying to create a new FieldTemplate for "States". The _Edit.ascx will comprise of a DropDownList that will list all US ...
2
votes
2answers
52 views
Updating option from drop down menu
I am currently trying to update the value of my drop down menu with my script in my list.gsp. I am retrieving the start_time and end_time values from my controller in a JSON and trying to update my ...
0
votes
0answers
43 views
working with multiple dropdownlist with dynamic approach
i have 3 drop down lis i want to bind and retrieve data on them ...
IN this 3 drop down list 1st one is bind onload event.
The problem is that when i am doing selection on 1st drop down list the 2nd ...



