May refer to a scenario where you can select multiple items from a list of items in a user interface.
Questions tagged [multipleselection]
336 questions
28
votes
7 answers
Chosen: Keep Multiple Selection Order
I am using Chosen's Multiple selection. I want to be able to track user selected order. For example, if a user select option2 first then option1, I want to get the result in the order of option2 and option1. But chosen sorts user selected options.…

topcan5
- 1,511
- 8
- 30
- 54
23
votes
7 answers
Multiple IF statements on MYSQL
I'm trying to Display somes values in my database result, I am using this code but I can not succeed:
SELECT
item_code,
IF(category_code = 'HERR1', 'NO', 1) OR (category_code = 'COLN5', 'NO', 2) AS category_code,
item_name,
…

John Nuñez
- 1,780
- 13
- 35
- 51
21
votes
3 answers
How to use in or to select multiple items?
I have a Facelets page with a . In each row there is a . If the checkbox is selected the object behind the corresponding row should be set in the bean.
How do I do this?
How to get the selected rows or their…

c0d3x
- 691
- 5
- 12
- 19
17
votes
3 answers
How to select multiple rows in UITableView in edit mode?
I want to ask, how can I forward to edit mode, where I can to select multiple rows, as in Messages app, when you click on top right button "Select", when you can choose multiple messages by tapping on circles.
Like this:
I searched a lot, really,…
user4809833
15
votes
1 answer
Android Image Picker Select multiple images from gallery with a maximum limit of 5
I have an app where the user needs to be able to choose multiple pictures to send them somewhere. However, they can only send five images at a time. I need to be able to limit the number of images that they can pick from the gallery through the…

Alex K
- 8,269
- 9
- 39
- 57
15
votes
4 answers
How do I insert multiple checkbox values into a table?
I cant seem to find or figure out a working solution to insert multiple checkbox values from a form into a table. The closes I have come is inserting the value of merely one checkbox value into a table. Kindly point out how I can insert multiple…

SirBT
- 1,580
- 5
- 22
- 51
13
votes
2 answers
Adding values to a multiple select with jQuery's select2
I'm using the select2 jQuery plugin on a
user1544337
12
votes
3 answers
Tortoise SVN Commit uncheck by default
I was wondering if there is a way to set the checkbox default setting to not checked/none when you try to commit files into the repository. The default setting for commit is set to check all, but I would like to avoid running into the scenario where…

user974047
- 2,115
- 7
- 33
- 45
11
votes
4 answers
Android recyclerview-selection Implementation?
I'm currently trying to implement the new recyclerview-selection APIs from Android Support Library 28.0.0-alpha1, and am running into some issues. My goal is to have a RecyclerView, with the ability to select multiple rows, show a Contextual Action…

dmyoung9
- 111
- 1
- 1
- 4
10
votes
1 answer
WPF & Listview. Shift - selecting multiple items. Wrong start item
Problem explained:
Given a list containing 10 items.
My first action is to (mouse) click on the second item.
Secondly I have a button which is supposed to programmatically select an item.
For example:
listView.SelectedIndex = 4;…

TacticalTree
- 103
- 1
- 6
8
votes
1 answer
Multiple selection in WPF MVVM ListBox
I have a ListBox containing filenames. Now I need to get array of selected items from this ListBox. I found a few answers here, but none of them worked for me. I'am using Caliburn Micro framework.
Here is my View:

Michal
- 803
- 2
- 9
- 26
7
votes
2 answers
Swift - How to get number values for selected rows in UITableview
I have a multiple selection on a UITableview made in Swift and I declare an Array that holds the NSIndexPaths of the selected UITableView Cells.
self.selectedRows = self.preferencesTableView.indexPathsForSelectedRows()
How do I convert this array…

user3110353
- 512
- 2
- 7
- 17
7
votes
4 answers
How to create a drop-down list in java swing with multiple item selection?
I'm aware of JList and JComboBox. I need the combo box drop down functionality with multiple selection functionality that JList provides.
This is because the contents of the list are too huge to be displayed using a simple list. I also need to…

K_U
- 15,832
- 8
- 26
- 29
7
votes
1 answer
GWT : Celltable Multiselection , MouseDown event?
I've got a CellTable, which has 4 columns:
| Column 1 | Column 2 | Column 3 | Column 4 |
Goal:
User can select multiple columns while holding mouse button down and hovering over the columns.
e.g User clicks on column 1 and holds the mouse button…

user3110458
- 374
- 5
- 17
6
votes
2 answers
jQuery select2 control - retrieve last selected element
I am using jQuery select2 control and I need to implement the following functionality: if the user tries to add a certain element, based on some algorithm, I should delete another (incompatible) element from the selection. I see two ways to achieve…

Alexei - check Codidact
- 22,016
- 16
- 145
- 164