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
26 views
Jquery selectmenu ignoring selected option when initializing
I am using the JQuery selectmenu, I Created a drop-down select menu with the following structure:
<label for="of_area">Your option</label>
<select name="of_area" id="of_area" ...
0
votes
0answers
18 views
asp.net dropdown.enable= false not working
Am trying to disable dropdownlist by simple ways :
ddlAssetType.Attributes.Add("disabled", "disabled");
OR
ddlAssetType.Enabled = false;
In run time debugging (in watch) compiler shows dropdown ...
-1
votes
0answers
48 views
Populating dropdownlist using JSON
I am populating dropdownlist using JSON. Now when i try to change the selection, it is jumping back to the default option.
$(document).ready(function () {
$.ajax({
type: "POST",
...
0
votes
0answers
14 views
Populate Dropdown list using JSON and fetch gridview data. Want gridview in Update Panel to avoid postback
I am populating the dropdownlist using json and WebMethod. Now, i want to fetch gridview data on the onSelectedIndexChange event of dropdownlist. any ideas?
0
votes
2answers
50 views
dropdown list in grails
In my program, which is a project tracker, I have a table with rows corresponding to the projects, and columns corresponding to the different information about the project (name, due date, status ...
0
votes
0answers
49 views
Issues with Twitter Bootstrap on Android Tablet
We are using Bootstrap 2.3.2 on a site and have the code below setup to display drop down navigation. This code works everywhere except on Android tablet devices (tested on Nexus 7 and emulator). On ...
0
votes
2answers
108 views
Redirect to new page when user select from a dropdown list in ASP.NET
I created an asp.net web application (VB) with a dropdownlist that have lists of url to pages on the server. I am new to asp and VB. I have research different forums for solution and decided to ask ...
0
votes
0answers
23 views
Scrolling text in a dropdown menu
I' m experiencing a little problem reguarding the marquee tag.
I have a select dropdown menu, which has some option. Some of those option contain text longer then the width of the select tag.
I just ...
0
votes
1answer
40 views
dropDownList yii 3 or more models
My sample database;
MODEL / REALSTATE.PHP
public function relations()
{
return array(
'neighborhood' => array(self::BELONGS_TO, 'Neighborhood', 'fk_id_neighborhood'),
);
}
...
0
votes
1answer
39 views
How to hide a bootstrap opened collapsed menu after clicking elsewhere on page
I'm working on a bootstrap template and i need to hide/close an opened collapsed menu when someone clicks outside the menu. Here an image of the menu http://dev.flutechs.com/menu.png
Thanks
0
votes
0answers
15 views
no add to cart from drop down list after validation
I have a drop down size list that is validated with jquery. I want to make sure that the product is not added to cart if the size is not selected when the error message pops up. Not sure how to ...
-4
votes
1answer
53 views
How do you make dynamic dropdown menus? [closed]
Here is what I made so far : http://jsfiddle.net/vKJ9G/5/
I am trying to make a copy of the drop down menu at http://www.getarealdegree.com/.
I want the first drop down to determine what goes in ...
0
votes
1answer
55 views
How to disable a specific input text acording to the dropbox selection?
<?php
<SCRIPT LANGUAGE="JavaScript"><!--
function codename() {
if(document.Tipo.Tipo.value="1"){
document.formname.nome.disabled="disable";
}
...
0
votes
1answer
42 views
Two DropDownList and EntityFramework
I need to create the methods (or another that you recommended I) so as to filter the data in two dropdownlist. The scenario I have is as follows:
1) Business Class for database access (CRUD)
...
0
votes
1answer
31 views
Spinner dropUP instead dropDOWN android
I have an Adapter which extends from ArrayAdapter in order to fill one Spinner with one collections of objects (City).
Both all objects and adapter work correctly, at least what it that it seems.
The ...
0
votes
0answers
21 views
Specifying number of dropdown menus by choosing value from a dropdown
Badly needed help here! :(
Getting straight to the point, I want to specify number of dropdown menus by choosing a value from my first dropdown.
Enter Desired Number of Superstars:
<select ...
0
votes
1answer
39 views
drop down menu bootstrap
im trying to create a dropdown button using bootstrap. But it just does not show the list:
<div class="btn-group">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
...
-2
votes
1answer
20 views
css drop down menu breaks template in chrome [closed]
Recently I have added a drop down menu in my blogger blog. After that the homepage shows thumbnails of posts as earlier in Firefox or IE but it is not working in Chrome. I have very little knowledge ...
0
votes
1answer
89 views
Twitter Bootstrap responsive menu/small devices: close/collapse menu on clicking a menu item
I want to change the behaviour of the Twitter Bootstrap Menu on small devices to close the expanded menu by either clicking on a menu item or clicking the menu button. Currently (default) I can only ...
-2
votes
0answers
34 views
CKEditor Dropdown Menu Doesn't Work with Doctype
I am trying to use ckeditor with asp.net but have problems with dropdown components of toolbar. For example font size or font color doesn't work. I realised that when I remove doctype tag from aspx it ...
0
votes
1answer
46 views
Cannot Access DropdownList in EditItemTemplate inside Gridview
My TT.aspx:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1" AutoGenerateEditButton="true" OnRowEditing="GridView1_RowEditing" >
...
0
votes
0answers
14 views
how to format dropdown menu item on mouse hover without making backgroung image none in twitter bootstrap?
I'm designing website with twitter bootstrap.
I designed dropdown menu and on each menu item i have given different backgroung images.
Now my problem is when I'm mouse hover on menu item it is ...
0
votes
0answers
29 views
From dropdown to table in Magento
I am using Magento Community in order to develop a webshop. I am creating products with a dropdown custom option. I have been trying to change the display (HTML) of this information. Basically, I ...
1
vote
2answers
51 views
Internet Explorer Not Dropping LIst Down
When I run this code example:
http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_select
in IE, the drop down list stays anchored to the last selection in the selection box, but when I use ...
4
votes
1answer
148 views
How to display checked value in Jquery Dropdown List populate from database
How to display ticked/checked data in a JQuery Dropdown list.
Basically my problem is that i want to display back checked value in a jquery dropdown list which is store in the database.
i tried ...
0
votes
0answers
50 views
php pagination with dropdown and textbox
i am trying to do make a simple search using a textbox + a dropdown. with the following code search works properly using textbox only or with dropdown selection but when the necessary line for making ...
0
votes
4answers
21 views
nav menu won't expand
I have a vertical navigation menu and I want to show different levels of the menu upon hovering of certain elements. The problem is that the method I used is not working and I do not understand why. ...
0
votes
2answers
36 views
How to properly position my sub-drop down menu?
I'm creating a 2 tier drop down, menu and sub-menu, and I'm having an issue with either positioning, relative or absolute, and or floats. I've played around with absolute and the space/gap goes away, ...
0
votes
3answers
74 views
Dropdown Login Menu using Javascript
I'm trying to create a drop-down login box using Javascript, but it will just not work with the code I'm trying.
HTML:
<div id="links">
<div id="links-wrap">
<ul ...
0
votes
2answers
70 views
Cascading update of two @Html.DropDownListFor in MVC4 with model binding
I saw this, however I have a different Q. I have a view like this:
@model myPrj.Models.RollCallModel
...
<table>
<tr> //Master DDL
<td>
@Html.LabelFor(model ...
0
votes
1answer
49 views
Adding textbox inside dropdown list
I am trying to add a textbox inside my dropdown menu but everytime i click the textbox inside of it the dropdown closes. Is there a way that i can use the textbox without the dropdown closing ? thank ...
0
votes
2answers
69 views
Validate experience dropdown with jQuery with minimum and maximum values
I am using mvc4
I have 2 dropdownlist one is minimum experience and the oher is maximum experience, i am trying to validate minimum with maximum vice-versa from client side, but not getting it worked ...
0
votes
1answer
38 views
How to make menustrip drop-down appear ABOVE the button in Visual Basic
In Visual Studio, how do you make a drop-down for a menu-strip button appear ABOVE the button, instead of below it, regardless of whether or not the form is on the bottom of the screen (I.e. windows ...
0
votes
0answers
41 views
Dropdown menu problems, DIV and or CSS issues
Alright, I've periodically looked and messed around with this for around 6 weeks and so far have been unable to figure out how to solve this thing. Though I assume it's something small and relatively ...
0
votes
0answers
19 views
HTML Select like DropDown Menu (on Click) and remembering the clicked link (Styling & Working)
I am looking to make an Isotope JS boxes which are controlled by two select dropdowns.
The first one has all the Industries, second one has all the Functions which change according to the Industry ...
-1
votes
0answers
18 views
IE 9, drop down menu on secure pages not working
The drop down menu on secure pages (https) of my website does not appear when using Internet Explorer 9. They seem to appear fine on the non-secure pages and in every other browser. Has any one else ...
0
votes
3answers
43 views
php read file and create drop down menu
I have following php code which create Drop-Down menu reading text file which contain name
files.txt
JAMES
MARK
TONY
drop-down.php
<?php
$path = "files.txt";
$file = fopen($path, 'r');
$data ...
0
votes
1answer
59 views
Set kendo ui dropdownlist width
I'm new in using kendo components. Sorry if the question might seem silly but I can't figure out the answer.
I would like to use a kendo dropdownlist, which has a fixed size since is constrained by ...
1
vote
1answer
22 views
Hardcode value to end of twitter bootstrap typeahead search dropdown
Im working on a search bar using twitter typeahead. Ive got it working to specifications except for one feature. I need to add a field at the bottom of every search that links to an advanced search ...
2
votes
4answers
77 views
dropdown menu using css and jquery
I'm trying to make a menu that's using css and jquery but i'm having problems for days now trying to figure out how to target the specific element.
here's my demo
CSS
.contain {
...
0
votes
3answers
103 views
JavaScript Age Validation from DOB for Drop Down Selection
I have seen many Age Validation from DOB codes but none can I seem to get to work with my code.
Basically, I am required for my TAFE course to create a form with First Name, Surname, Email address, ...
0
votes
1answer
75 views
I have to post select options on change with PHP, but select is being converted to ul li by JQuery
I am using styled select dropdown, from here:
I want to post the selected option in order to render some data for other dropdowns.
The problem is the the
onChange="this.form.submit()"
is not ...
0
votes
1answer
51 views
Getting value of a field in a form in yii from ajax
I have a problem, i'm quite a newbie in yii and i suck in ajax.
Suppose i have a form in yii looks like:
<?php echo $form->dropDownListRow($model,'study_type_id', $studyTypeList, array(
...
-1
votes
0answers
49 views
CSS Dropdown menu in IE [closed]
Desperately looking for some help!
I created a CSS dropdown menu from a recommended tutorial.
It works great in Firefox and Chrome, but will NOT show the dropdown content in IE!
There was a similar ...
1
vote
1answer
89 views
Bootstrap nav dropdown-menu only showing horizontally (Rails 3.2.13, bootstrap-sass 2.3.1.2, jquery-rails 2.2.1)
Using twitter bootstrap in a rails project, I'm aiming to get something looking like this (nice and simple, and readily achievable by putting the below code into jsfiddle to prove I'm not going ...
-6
votes
0answers
39 views
What is suckerfish? I need an easy drop down menu [closed]
I need help! I need an easy drop down menu that looks great. All of you PHP coders, I need a way to easily change text when someone logs in to my site, I want one of the nav items that is originally ...
0
votes
1answer
49 views
Dropdown menus dependent on each other
I have three drop down menus that are using a store Procedure to populate my gridview. I need the first facility DropDown to give different options in the second source type dropdown depending on what ...
1
vote
2answers
62 views
drop down list validation without a form
OK, I have been researching drop down list form validation and cannot find anything that does what I am looking for. My dropdown list is part of a list element and not a form element, and my submit ...
-4
votes
2answers
107 views
Want css based ul list menu to flow over page contents
I have
1. an basically html page using css to create classic three column page and I have an
2. <ul> file which generates a menu with CSS
and each works fine separately.
I'm trying to place ...
0
votes
1answer
24 views
ngOptions ordering and selecting objects in array
I have a set of options in my controller that looks like this:
$scope.options = [
{one: 'ONE'},
{two: 'TWO'},
{three: 'THREE'}
];
My view looks like the following currently looks like ...






