question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Duplicate selected values after multiple re-setting choices

See original GitHub issue

Hi, thank you for the cool widget! found a bug: setChoices with replaceChoices = true and preselected choice in the data leads to nonsense duplicated value:

<select multiple></select>
const element = document.querySelector('select');
const choices = new Choices(element);

choices.setChoices([
  {label:'Choice 1', value:'1'},
  {label:'Choice 2', value:'2', selected:true},
  {label:'Choice 3', value:'3'},
], undefined, undefined, true);

choices.setChoices([
  {label:'Choice 1', value:'1'},
  {label:'Choice 2', value:'2', selected:true},
  {label:'Choice 3', value:'3'},
], undefined, undefined, true);

image demo

Issue Analytics

  • State:open
  • Created 4 years ago
  • Comments:5

github_iconTop GitHub Comments

1reaction
viladimirucommented, May 6, 2022

You can use .clearStore() as temporary solution

1reaction
jshjohnsoncommented, Nov 12, 2019

Hey - looks like the selected choice isn’t being cleared. Thanks for raising

Read more comments on GitHub >

github_iconTop Results From Across the Web

jquery - How to Remove duplicate dropdown option elements ...
This works when you start selecting options from scratch, but when form already has fields that are pre-selected (edit_form) the disabling doesn ...
Read more >
Automatically Remove Duplicates from Drop Down Lists
To link a data validation list you can set the list to $E$2[Hash Tag ... i could go to data remove duplicates make...
Read more >
Cannot select multiple objects in AutoCAD
To enable multiple selections by clicking them with the mouse: On the command line in AutoCAD, enter the PICKADD command. Enter 2 for...
Read more >
Duplicate and copy photos and videos on iPhone
Duplicate multiple photos or videos · Tap Library, then tap All Photos or Days. · Tap Select, then tap the thumbnails you want...
Read more >
13.2.7.2 INSERT ... ON DUPLICATE KEY UPDATE Statement
INSERT INTO t1 SELECT c, c+d FROM t2 ON DUPLICATE KEY UPDATE b = VALUES(b);. You can eliminate such warnings by using a...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found