Questions tagged [multiple-select]
401 questions
0
votes
2 answers
Need to write a multiple SELECT statement in MySQL
I try to create a MySQL Statement with multiple SQL Statements.
What i trying to do:
I get two tables, project & jiraissue.
Table: project
Columns:
ID decimal(18,0) PK
pname varchar(255)
URL varchar(255)
LEAD varchar(255)
DESCRIPTION text…

Michael Schmidt
- 9,090
- 13
- 56
- 80
0
votes
3 answers
Selecting Multiple Options creates Multiple Inputs
I have a select field in a form that allows you to select multiple options.
I need to create a new input textbox for every number of options selected, automatically.
For example, if you select on option in the select box, one input will appear…

Dave Hunt
- 691
- 2
- 10
- 23
0
votes
1 answer
jQueryMobile: Multiple-Select sent all values to server
I want to use a multiple-select field in jQuery-Mobile. However only the last selected value is sent to the server. This is my Code:

Pascal Klein
- 23,665
- 24
- 82
- 119
0
votes
1 answer
Rails Multiple Select boxes: Injecting default values from params
I currently have a multiple select box in a rails form that looks like this:
= select_tag :in_all_tags, options_from_collection_for_select(Tag.where(:project_id => @project.id), :id, :name, @in_all_tags_param), { :id => "tags", :tabindex => "3",…

PlankTon
- 12,443
- 16
- 84
- 153
0
votes
0 answers
multiple select for 3 choices per option - or another solution?
asmselect is perfect for multiple select boxes with 2 choices (selected, or not). It does what it should, and well - granted it needs a little styling help.
However, what happens if you need more than one choice for each select option?
For…

Shackrock
- 4,601
- 10
- 48
- 74
0
votes
2 answers
Storing and displaying multiple select items
I am using a multiple select box as shown below:
0
votes
1 answer
I cannot update multiple columns, only one will update
I figured out how to update a table with multiple columns using checkboxes, except when more than one checkbox is selected the update will only happen for one of the columns not both. Could someone please help? Thank you!
Here is the working code…

Alexandra
- 65
- 1
- 2
- 13
0
votes
1 answer
Getting multiple selected options with javascript from collection_select, RoR
I have a view in my Ruby on Rails application where there are two collect_selects on the right side, one of which is a list of users and the other a list of objects which has :multiple => true. When the user has selected a user and at least one…

Alexei
- 127
- 13
0
votes
1 answer
JS make a list of multiple select-options in textField
$().ready(function() {
$('#add').click(function() {
return !$('#select1 option:selected').remove().appendTo('#select2');
});
$('#remove').click(function() {
return !$('#select2…

Martin
- 1,193
- 3
- 12
- 24
-1
votes
2 answers
PHP 3 multiple select query from sql
So, i used my google friend but i couldn't find a solution anywhere.
The situation is the following, given 3 multiple selects, from which you can select several options separately and list only those that are in it. I means that in SQL query:
select…

Stylee
- 11
- 2
-1
votes
1 answer
Angulajs Nested loop of select option from array
Hi I am using angularjs to build a form I have a array return from php like this and I want to build a form like this from the array.
Company
…

sanu
- 1,048
- 3
- 14
- 28
-1
votes
1 answer
MySQL - Joining multiple select statements
I initially tried fetching data using individual queries which took too much of resources, so I am trying to combine the queries in order to reduce the time taken. The first select works fine in itself but I want to combine with the second select in…

Saad Bashir
- 4,341
- 8
- 30
- 60
-1
votes
2 answers
Get value from multiple select dropdown on Yii to be inserted to database
Help I want to get value from a multiple select dropdown from a form to a controller.
Here's my form:
-1
votes
2 answers
Mysql query with multiple selects results in high CPU load
I'm trying to do a link exchange script and run into a bit of trouble.
Each link can be visited by an IP address a number of x times (frequency in links table). Each visit costs a number of credits (spend limit given in limit in links table)
I've…

D. Ionescu
- 9
- 4
-1
votes
1 answer
html and css display my menu selection
I want to write an HTML page that will contain several things:
a banner on the top of the page
a box that inside there will be types of food with multiple selection, for example:
eggs
tomato
pasta
carrot
toast
cucumber
...the user can select…

ronron555
- 21
- 1
- 1
- 3