The selectbox tag has no wiki summary.
6
votes
4answers
5k views
Cufon text z-index (IE6 and IE7 stylish select box bug)
I'm replacing some text with cufon on my page and I'm using jquery stylish select box plugin (http://www.scottdarby.com/plugins/stylish-select/0.4/) to style select boxes.
The problem is that, in IE6 ...
5
votes
1answer
309 views
jQuery adding/removing attribute and class
I am working on a interactive search map, which uses image maps and rollover sprites and input selectboxes!
You can see my working example here http://jsfiddle.net/mediacake/FxS6j/
The problem I've ...
4
votes
2answers
348 views
How do you scroll a select box to a specific point (using javascript or jQuery)?
I want to make the selected option appear in the middle of a drop-down. When I first load the page it appears at the bottom of the drop-down, but if I scroll past it and exit it remembers that when I ...
2
votes
1answer
63 views
How to populate sql query result in a series of chained select boxes?
I have these four tables (which are hierarchical, meanwhile) in my database:
Table 1: State
+----------+-------------+
| state_id | state_name |
+----------+-------------+
| 1 | Maharashtra |
...
2
votes
2answers
61 views
set selected value for AUTO POPULATED select box in jquery
i have 2 select box on my page named [Municipality] and [brgy] but the [brgy] select is auto populated by what ever the user selects on [Municipality] select box using change() event in jquery..the ...
2
votes
1answer
56 views
Copying or cloning an HTML element in Prototype
I have two html select boxes where items are moved from left to right, now I want to change the behavior such that elements are copied from right to the left. I tried Oject.clone(o) and ...
2
votes
1answer
180 views
Ruby on Rails form select
Hey guys I'm a rails newbie and I have a question about select boxes in forms. Here is my code right now.
<%= form_for @message do |f| %>
<%= f.text_field :name %>
<%= f.select ...
2
votes
1answer
678 views
Anyone know of tree structured jQuery select box
I'm looking for an select box replacement, in which I am choosing a node of tree (the hierarchical structure is important). The other import thing is the ability to typefilter the nodes, because there ...
2
votes
1answer
437 views
Get value of selectbox with JsHelper in CakePHP
I have a select box, and I want to use it to Ajax-update some other content on the page. So I have bound an event handler using the JsHelper (jQuery) like so:
<?php
echo ...
2
votes
2answers
1k views
Apply jquery selectbox style on chained selectbox
I have created a pair of chained selectboxes in my page. The second selectbox is filled with a set of values, depending on the first box's selected value.
The script that makes the two selectboxes ...
2
votes
2answers
2k views
Need Magic jQuery Replacement for Selectbox Dropdown Form Element
I'm stuck on a problem and, after what seems like days of searching for a solution, I'm reaching out to Stack Overflow for help.
I'm trying to replace a standard <select> dropdown form element ...
2
votes
1answer
2k views
CakePHP model validation with array
I want to use CakePHP's core validation for lists in my model:
var $validate = array(
'selectBox' => array(
'allowedChoice' => array(
'rule' => array('inList', $listToCheck),
...
2
votes
3answers
1k views
Getting previously selected item in select box with jQuery
I have a single item HTML select box on which I'd like to find out the what item was selected just prior to changing selection to the new item.
By the time the change event is fired, it's already too ...
1
vote
3answers
21 views
Mark elements in a selectbox from parameter in URL
I have a little problem with a selectbox that have to have some marked options from a URL parameter.
I have an URL that can look like this
...
1
vote
2answers
25 views
Select box: how to populate years php
i'm trying to populate a select box in php for years in a birthday field. A variable $year is set from a query and that particular year has to be selected in my select box. The code so far is this, it ...
1
vote
3answers
55 views
How can i compare set of selected box values with another set of selected box values?
I have the form with selected boxes like below.
i need to group the first two select boxes "Select Session" and "Select Time", i need to allow select unique sessions and time for each pair of ...
1
vote
1answer
88 views
jquery replace is not working for single quote
I'm trying to strip out the single quote from my options in a select box, but the below doesn't appear to be working:
$(function(){
$("#agencyList").each(function() {
$("option", ...
1
vote
1answer
70 views
Using a Cookie to Remember a Previous User
I'm sure a similar question has been asked before, and I've looked around for a while for an answer that I can apply to my particular situation, but haven't had any luck. Basically, I have a web ...
1
vote
2answers
148 views
How to change a select box option when using jQueryUI
Here's what I'm trying to do:
You open the page and there's a select box where you choose option A, another select box, option B, appears and shows options depending on what option the user chose for ...
1
vote
3answers
60 views
Getting recent selection in mutiple select box
I want to populate content depending upon the multiple select box selection.
I can get all selected value of select box.
Using
$('select').change(function(){
console.info($(this).val()) // it ...
1
vote
1answer
211 views
Show ajax based elements after form submit error
I have two select elements in my form, Category and Sub-category. At first, only the category select is shown. When the user makes a selection in the category select, an AJAX request is sent to the ...
1
vote
3answers
401 views
How to reset a selectbox with jquery using chrome?
I just want to clear the selection of a html selectbox. The following works fine within Safari and Firefox but does not in Google Chrome:
$('select#selectbox').val(null);
Any ideas?
Whole js here: ...
1
vote
1answer
75 views
Qooxdoo - celleditor problem with selectbox
I've made table with celleditor similar to this:
http://demo.qooxdoo.org/current/demobrowser/#table~Table_Cell_Editor.html
-row 'Status' with selectbox (I need to remember in this selectbox for ...
1
vote
2answers
1k views
I am going crazy. Select box inside a dropdown menu div makes my dropdown menu div disappear when I use the select box — how do I stop this?
Simple example here: http://jsfiddle.net/ycHgg/1
Try this in IE 7, 8 or 9. Click on select box inside the dropdown div and then try selecting the number "3" -- the entire dropdown div will ...
1
vote
1answer
214 views
Javascript val() for selectbox not linking correctly
I'm using the niceforms plugin to style my select box. The problem I'm having is that I can't get the right javascript code to activate the links placed in the value option.
The niceforms site ...
1
vote
2answers
79 views
What is the best way to handle an “other” option in a select box?
I'm needing to implement a select box that has an "other" option. If this is selected the user should be able to type in a different option into a Text Field. My concern is for how to implement the ...
1
vote
1answer
5k views
Javascript Get Values from Multiple Select Option Box
This one is driving me nuts. It’s got to be something simple and stupid that I am overlooking.
I have a multiple select box in a form. I am just trying to get the values that are selected. In my ...
1
vote
1answer
193 views
Javascript receive onmousedown of a disabled select tag
I have a form with two radiobuttons:
[radio1] [radio2] [select]
<input type="radio" id="radio1" name="radio" checked/>
<br/>
<input type="radio" id="radio2" name="radio"/>
...
1
vote
2answers
159 views
jQuery: How to select an option in select box based on option's HTML text?
To get the text of the selected option I do:
$("select option:selected").text()
How could I set an option based on it's text ?
See here
1
vote
1answer
419 views
I want to use JSON data in select box in JqGrid
public ActionResult GetKpiList()
{
for (int i = 0; i < 5; i++)
{
JqGrid.Row row = new JqGrid.Row();
row.id = i;
...
1
vote
3answers
318 views
Can i reset the selectbox in which i have removed options with Javascript/jQuery?
i am using the following command in a loop
$("#day option:last").remove();
and if the command is executed 2 or 3 times, my selectbox is without some of the options.
So, i need to reset the ...
1
vote
3answers
444 views
select boxes design
For some reason the select rails tag results in a very ugly grey select box. I've been looking around for a way to change this, I'm guessing some sort of default CSS is generated for select boxes by ...
1
vote
2answers
217 views
c# clear selectbox and build it dynamically - windows form application
how to clear all the option in select box in c# (windows form application),
is there something easy or need to loop over all the items ?
how to add dynamically option to this seelct box ?
1
vote
2answers
579 views
How to pass the selected value from select box to a PHP function?
I have select box for company whose values are populated from DB and I also have another select box for department. Now I have a PHP function to get the values of department if we pass the id of ...
1
vote
2answers
708 views
Add a class to a selectbox in Rails 3. Please help!
I cannot figure out how to add a class to this select box in Rails 3.
<%= select(:item, :item_type, [['Phone', 1], ['Email', 2], ['Website', 3], ['Address', 4], ['Occupation', 5]]) %>
Is ...
1
vote
2answers
292 views
2 selectboxes one for updating the other onclick cakephp
I have a form callled "Project", it contains a selectbox with the names of the companies , the other selectbox is hidden and is called "Staff" and is to be made visible and filled with the names and ...
1
vote
3answers
619 views
jquery activate dropdown of select box
How can I activate/deactivate dropdown of classic selectbox by clicking to link in jQuery?
I don't need selectbox replacing with jQuery, because it's too slow for huge number of options.
I test ...
1
vote
1answer
431 views
The width of items in select box is different in IE 8, Firefox and Google Chrome
I have a problem with the select box in my application. I specified some width to the select box.
The width of some of the items in the select box is more than the actual width of the select box.
...
1
vote
1answer
270 views
How do I add and remove multiple “belongs_to” instances to and from a “has_many” instance?
I currently have two models: Campaigns and Videos. Videos belongs to Campaigns and a Campaign has many Videos. In my Campaign form I want to be able to add Videos that have no parent and also be able ...
1
vote
2answers
1k views
move selected item from one selectbox to another selectbox(with duplicate prevention)
i have two select box, now what i want is
i want to move option from one select box to another via a button
below is my code:
php
<table>
<tr>
<td>
...
1
vote
3answers
243 views
when i write options of the selectbox from different php page with jquery,it fails!
Hi i am developing a web app.I am retrieving options of the select box from database and i want to write these records to selectbox.My page structure is like that:
main.php=>there is a selectbox in ...
1
vote
1answer
201 views
getting values of multiple selectboxes via jquery
I want to fill an array in javascript that takes all the values out of different selectboxes with the same name
so for example if i have a html like this:
<select name="selectbox[]">
...
1
vote
2answers
329 views
Generating very big options list inside select box from jSon
Performance issue, when generating around 800~ options from jSon object via javascript.
Any suggestion, what to change or use, to remove those freezes, when new list is generated?
Using jQuery.
...
1
vote
1answer
74 views
1
vote
1answer
374 views
Trouble selecting an item in a SELECT box with jQuery with a quot
I am having a hidden form with a list which I need to select an option from when a user wants to view this form.
I was using
var assignee = 'persons name';
jQuery('#edit-form' ...
1
vote
1answer
361 views
how to select options in Multiple select list with jQuery?
I have two dropdowns. When a user selects a value from the first one i want in the second(which has the multiple select option), with jQuery, to select some values automatically. How can i do that?
...
1
vote
4answers
1k views
How to fetch all the option values(selected/unselected) in a selectbox
I want to fetch all the option values(selected/unselected) in a selectbox on click of a button. Is this possible..?? If it is a yes how can i achieve that..??
Thanks in advance
0
votes
0answers
34 views
how to save last selected Option in a file JavaScript
i have here an HTA and theres is a selectbox named like this: object.select1.options
I want to save the selected value from this box in a file located on C-Partition. When the user restart the ...
0
votes
0answers
15 views
How to make the selected option of a dropdown Uppercase using CSS during page loading in a mobile browser
I have a select box in my HTML pages developed for mobile browsers (iPhone 4.1+, Android 2.1+ and blackberry 6+). I need to make the text-transform: Uppercase using CSS for that select box.
I have ...
0
votes
2answers
27 views
Select box: how to populate days php
Recently i ask how to populate years and i thought that i have all the answer i need. Thing is that i have a new problem with days. The problem seems to be more of mysql than php. In my table users, ...