dropdown

Resolution problem with drop down menu

http://www.israelnumber.com/new2/ the drop down menu on small resolution is hidden and a scroll bar appears , how can i move the menu to hidden menu to the left? tnx ...

Jquery DatePicker changing month using dropdown causing window scroll

I can only see my datepicker when i scroll the page.After scrolling if i click on datepicker , it opens as expected but after changing month using dropdown, the scroll position of window is moved up little bit causing datepciker hidden. So can't click on it. ...

Linking an SRSS report - Dropdown parameter not getting passed.

Sorry if this is a duplicate post, not sure what happened with my original one. I have a linked SSRS report (Report A) that links to Report B. One of Report B's parameters is controlled by a Dropdown/ComboBox. In the parameters dialog box that gets launched from the navigation tab, I have tried both 'VALUE' and simply putting VALUE with...

Suckerfish menu drop down not showing in IE6 and IE7

Hi, Normally I would post the code of just the menu but the menu on its own works but when put in the surrounding code this menu fails to work in IE6 and IE7. So the menu can be found in use here: http://block.pd.alphaready.com/ I think the problem I am having here is the IE absolute positioning bug explained here http://www.brunildo.o...

Select and Options Styling

How to style the select options ? i want alternating background colors in the drop down menu. ...

C# Dropdown Slide Form

Is there any built-in control like a dropdown/slider? For instance, I want to display some info on dialog/control/form and inside that form there is a arrow which expands it to show more information? When I click the black arrow, the form should expand vertically to show more info. That's what I want to achieve. If there isn't any bui...

How to change the dropdown value based on string value in .net winforms

i am using .net winform. based on my string it will focus the drop down value. ex. my dropdown have select value ..if i pass select as a value it should focus the select option in dropdown . ...

jQuery: Updating an option's text inside a select after the option has already been added?

I've searched all around for a solution and have found nothing. Here is some sample code: $('#myselect').append( '<option id=\'myoption\'></option>' ); $('#mytextfield').change(function() { $('#myoption').html($(this).val); }); so, i want to change the select option's html whenever my text field is changed. any ideas? thanks! ...

Codeigniter - passing multiple data arrays to a view?

Hi, I am trying to populate a dropdown menu on an events page with a list of locations. What I wish to do is retrieve all names from a locations table, store them in an array in my event.php controller, pass this to a view which then lists all the locations in a dropdown menu. Here is the loop in my controller which retrieves the loca...

dropdowns disappear under iframe in IE6

Hi All, I need to absolutely position a transparent iframe on top of the form with dropdowns. But when I do so all dropdowns under iframe disappear. I am testing in IE6 on XP SP2. Couldn't find any solution in Google. Anybody managed to fix this? Thank you! Dasha ...

DOM based scripting.

ok so here's my problem... i've been following this tutorial ( http://www.alistapart.com/articles/dropdowns ) to make a css drop down menu with my wordpress blog. everything works fine... except in IE6. now i know this is normal, and in the link i posted above there is a fix of this which makes use of DOM based scripting... is this java ...

Opera jQuery drop down bug

So I designed / coded these drop down menus for this website. It works perfectly in Safari, Firefox, ie7, and ie8, but in Opera, it is extremely buggy. Check it out (in opera): http://newenglandforestrally.com/ Is this an opera bug with how Opera handles jQuery (and therefore blame it on the browser and not worry about it), or should I...

jquery dropdown simple problem?

hey guys, i'm almost there but I'm not able to solve the last problem. I'm trying to create a simple dropdown menu with jquery on a Indexhibit page. $('#menu ul li.section-title').hover( function () { $(this).parent().children().show('fast'); }, function () { $(this).parent().children().not(this).hide('fast'); } )...

jquery hover function only for ul with class?

hi guys, i'm working on a little dropdown menu: <ul> <li class="section-title">HEADER which triggers dropdown</li> <li><a href="element_one">element one</a></li> <li><a href="element_one">element one</a></li> <li><a href="element_one">element one</a></li> </ul> <ul> <li><a href="element_one">element one</a></li> <li><a ...

explorer not following dropdown list option link under jquery

1st new to this list. please pardon any faux pas.... this is the html... (Q1..not sure of syntax for selected option but this seems to work...) <select> <option class=" " value="choose" selected="yes" SELECTED>choose language</option> <option class=" turnoffbuttonenglish" value="japanese" >日本語 </option> <option class=" turnoffbuttonja...

dropdown-textbox using jquery

is there any jquery plugin which provides an dropdown-textbox functionality? something similar to http://lab.anotherdan.com/js/textdropdownlist/ In this example he is making use of ul and li items.. but can the same be done for <options>? i am not sure if what i am asking is even possible. so any suggestions regarding this would be much...

Updating the contents of a dropdown list Javascript/PHP

I'm new to Javascript/Jquery and struggling with a certain issue. In the process of adding a job to a database, the users have an option to update the contents of dropdown lists with new options. Adding the new options is handled through a greybox which posts data with PHP through to the database. After adding the new option it doe...

cascading drop down box implementation without ajax in ruby on rails

I am newbie in RoR and creating my first project. I have two models category and article.category has many article and article belongs to one category.I want to create cascading drop down boxes to display article.In first drop down box I want to select category which update second drop down box with articles which belong to the category....

dropdown disappears in IE 8

Hi. I am working on a dropdown meenu, which is disappearing in IE 8. Works fine in firefox and chrome, but not in IE8. i googled for two days and made many changes but still not working in IE. Here is the code for CSS. .dropdownmenu li, .dropdownmenu li ul { display: block;display:inline;float:none; } dropdownmenu ul:hover , .dropd...

Wicket resource - string not found?

I'm playing with wicket's form input components. I tried to put an enum to a DropDownMenu: public enum Choice { ONE, TWO, THREE } cz.oz.wicket.pages.form.FormPage.java -------------- .add( new DropDownChoice("choice", Arrays.asList( Choice.values() ), new EnumChoiceRenderer() ) ) and added a properties file: cz.oz.wi...