Questions tagged [multiple-select]
401 questions
8
votes
1 answer
Disable selected choices in angular-ui-select multiselect mode
In ui-select muliple mode, selected choices are removed(checked in source code too) from the choices list but I just need that selected choices to be disabled, like below, instead of being removed.
this above image is taken from chosenjs.
There is…

Venugopal
- 1,888
- 1
- 17
- 30
8
votes
2 answers
Django models.CommaSeparatedIntegerField with forms.CheckboxSelectMultiple widget
I have a Django application and want to display multiple choice checkboxes in an Django's admin interface. I do not want to create a separate model for my choices by using a ManyToManyField.
models.py
from django.db import…

Alexander
- 841
- 1
- 9
- 23
8
votes
4 answers
Cells not getting selected in UITableView with allowsMultipleSelectionDuringEditing set in edit mode
I have a UITableView that is configured to allow multiple cells to be selected in edit mode. However, the empty white circles on the left never change to red circles with the white checkmarks inside after a cell is touched/selected.
I have read…

dandan78
- 13,328
- 13
- 64
- 78
8
votes
1 answer
How to load selected list items in multiple-select-listbox in update view in yii?
I have a multiple select-list-box for Staff in Create-Service-Form, used to select multiple staff when creating a new service. for this i can assign multiple staff on a single service.
I saved staff_id field as:
$model->staff_id =…

Frank
- 2,285
- 7
- 43
- 68
8
votes
2 answers
Select multiple values in a multiple select box with Jquery
So I have two multiple select boxes like this

0x56794E
- 20,883
- 13
- 42
- 58
7
votes
2 answers
How to use SqlDataReader if I'm having more than one select statements in a stored procedure
I have coded three select statements in stored procedure in Microsoft SQL Server 2005. Both select statements return multiple number of records and table list for select statements is different. One select records from a master table and the other…

Maddy.Shik
- 6,609
- 18
- 69
- 98
7
votes
1 answer
NSTableView Drag&Drop selected rows overrides row layout in blue
I have a NSTableView that shows some images and a text in every row. I enabled multiple Selection for NSTableView. And I enabled Drag&Drop for TableView to sort or export the images.
It now happens that, when I select more than one row, and dragging…

Daniel
- 71
- 1
6
votes
1 answer
Material UI Multi-Select different code value and visible value - show keys instead values
I am using Material UI Multiple Select based on documentation example. I need to save id of the selected option and show name, so I render object. When I used example from documentation with placeholder, i see ids instead names of selected.
See:…

jirina Brezinova
- 133
- 2
- 6
6
votes
1 answer
Select with :multiple => true not saving values
Im trying to save multiple selected values form a multiple select field generated by the rails helper select.
<%= f.label :available_type, "Available in category" %>
<%= f.select :available_type,…
<%= f.select :available_type,…

Ole Henrik Skogstrøm
- 6,353
- 10
- 57
- 89
5
votes
5 answers
Magento - Can't delete mulitple select value in the product admin
I created a new attribute (multiple select) with some values, everything works fine but when I want to delete all the selected values for a product, I get the message "The product attribute has been saved." but the values are still…

adrien54
- 1,620
- 1
- 26
- 31
5
votes
1 answer
React js Multiple Select [object Object], [object Object]
I`m using Material UI to make a multiple Select. This is my code.

LuisBV
- 53
- 6
5
votes
2 answers
multiple select js when click on single element raise also checkall
I'm using this multiple checkbox plugin
http://multiple-select.wenzhixin.net.cn/docs/en/download
I'm using the filtering option
The problem that I have is that if I have only one option whit Select All like this image
when I click on BERMUDA…

Martina
- 1,852
- 8
- 41
- 78
5
votes
2 answers
Set selected option to multiple list using jQuery
I have a list from DB which is displayed in select multiple tags:
5
votes
4 answers
How do I allow a user to select zero options from a multiple selection box in rails?
I have a settings model with a column options, and set it to serialize with serialize :options. In my view, I have a multiple selection box, using select("settings", "options", ['option1','option2','option3'], {}, :multiple => true) which works…

Simon
- 25,468
- 44
- 152
- 266