Questions tagged [multiple-select]
401 questions
3
votes
3 answers
Android - setSelected in OnItemClick in ListView
I am trying to set item selected in OnItemClick event in ListView and it just wouldn't leave item selected. What am I doing wrong?
lView.setOnItemClickListener(new OnItemClickListener()
{
@Override
public void…

dropsOfJupiter
- 6,763
- 12
- 47
- 59
3
votes
2 answers
Multiple dependent select box on page jquery
Hello I'm trying to create form where are two or more same dependent select boxes. Problem is that I can choose from first select box and can't figure out how to choose from other(s). Can anyone help me with this.
I can't select from third select…

tomas
- 121
- 1
- 2
- 11
3
votes
2 answers
Rails 4 nested form with has_many, through and multiple select
I have a problem with nested form and has_many relation. Bussiness case: there are laboratories and their suppliers. Suppliers can be shared between labs.
Models
class Lab < ActiveRecord::Base
has_many :lab_suppliers
has_many :suppliers,…

Michal
- 139
- 3
- 14
3
votes
0 answers
Angular Checkbox List multiple select
I've got a checkbox list that I am able to select multiple items at once by using the shift key (click/check an item, shift click/check another item and all items in between are checked). I've got that working (Y)
Checkbox list multi select w/ shift…

Ed Sinek
- 4,829
- 10
- 53
- 81
3
votes
3 answers
Grails: Load data on one ComboBox depending on another
Let's say I have a combobox with the options GENERAL, AIR, GROUND, and SEA
And then another combobox that loads certain…

randomizertech
- 2,309
- 15
- 48
- 85
3
votes
1 answer
Multiple select in materialize-css with angular2 not rendering dynamic values
I am using angular2-materialize with materialize-css to work with angular2. Everything works fine even the normal select component .
the problem is with multiple select it doesn't render the dynamic values , I don't understand if its the issue with…

noobProgrammer
- 2,884
- 3
- 17
- 20
3
votes
2 answers
Select2 Allow re-selection of same value
I'm Using Select2 (v3.5.2) and trying to allow the user to select one or more values from a multiple dropdown.
Imagine this simple pseudo html markup:

dev7
- 6,259
- 6
- 32
- 65
3
votes
0 answers
Conversion to array of multiple select in PHP
In my local system I can safely send the values of a multiple select box by ending the name of the select with a couple brackets [ ]. Then PHP will deal with the parameters sent, and treat the values of the select box as an array in the $_REQUEST…

Amarnasan
- 14,939
- 5
- 33
- 37
3
votes
2 answers
get the multiple selection as comma separated from select box into a text input
I don't know js. I need to get the multiple selection as comma separated from select box into a text input.
with pure js, I found only this question related on SO. Multiple selections into input box
And I tried the js code in that question.…

Andre Chenier
- 1,166
- 2
- 18
- 37
3
votes
1 answer
JQuery mobile - how to set the values of a multiple select?
I have a multiple select in jquery mobile.
docs:
http://jquerymobile.com/demos/1.0a4.1/docs/forms/forms-selects.html
To get the value I do this
var leerplandoelen = $("#AddLessonForm_leerplandoelen").val();
var leerplandoelenString =…

Ken Vernaillen
- 859
- 1
- 7
- 37
3
votes
2 answers
Multiple SELECT with NOT IN - inner Select statement returns empty and the whole SELECT returns empty
There are two table TABLE1 and TABLE2 in which there is a common field ID. I wanted to retrieve values from TABLE2 that doesnot match in TABLE1 based on ID value.
select * from TABLE2 where subject = 1 and ID NOT IN (select ID from TABLE1 where…

Tivakar
- 163
- 6
- 15
3
votes
1 answer
Yii CMultiFileUpload select multiple files at once doesnt work
i want to select multiple files at once, but only ONE File always shows up in the MultiFile-list Div container with the possibility to delete it. But i want to shop up all the files i selected.
What am i doing…

John
- 31
- 3
3
votes
1 answer
Ajax live search with data from a database
I've seen some (well-explained) examples where the available results of a live search are found in an xml file. But only a few (badly-explained) ones where the results come from a database. I'm interested in the second case.
One solution could be to…

Orestes Echo
- 53
- 1
- 10
3
votes
1 answer
Limit selections in a listbox in vb6
How can I limit the selection of ListBox in VB6?
What I want: User can select maximum 8 Item from ListBox.
I am using this code:
Private Sub lstBox1_Click()
If lstBox1.SelCount > 8 Then
MsgBox "Maximum 8 items can be selected." …

Himanshu
- 31,810
- 31
- 111
- 133
3
votes
3 answers
Getting index for multiple selected item in ListBox in c#
I have two ListBoxes. First ListBox items are list of "Products". and second ListBox items are list of "Item in Product" so When user click the item in first(Product) Listbox The second ListBox will show the list of items in selected…

Qusyaire Ezwan
- 279
- 4
- 8
- 18