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
sealview
  • 99
  • 1
  • 8
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
5
votes
2 answers

how to get the clicked option in bootstrap selectpicker?

$('.excludeDaysPicker').selectpicker(); I have bootstrap selectpicker with 'multiple' choose option enabled.