We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's not possible to select the same items twice dispite duplicateItemsAllowed default being true.
<select multiple> <option value="Choice 1">Choice 1</option> <option value="Choice 2">Choice 2</option> <option value="Find me">Choice 3</option> <option value="Choice 4">Choice 4</option> </select>
const element = document.querySelector('select'); const choices = new Choices(element, { editItems: true, renderSelectedChoices: "always", });
Expected behavior When clicked, Choice 2 is added to the list even if it's already selected
The text was updated successfully, but these errors were encountered:
Fix documentation that suggests duplicateItemsAllowed works with sele…
6e1426a
…ct-multiple, when it only works for text. #1123
This is a documentation issue, as duplicateItemsAllowed only works with text and not select-multiple
duplicateItemsAllowed
text
select-multiple
Sorry, something went wrong.
No branches or pull requests
It's not possible to select the same items twice dispite duplicateItemsAllowed default being true.
Expected behavior
When clicked, Choice 2 is added to the list even if it's already selected
The text was updated successfully, but these errors were encountered: