tom-select icon indicating copy to clipboard operation
tom-select copied to clipboard

Tom Select is a lightweight (~16kb gzipped) hybrid of a textbox and select box. Forked from selectize.js to provide a framework agnostic autocomplete widget with native-feeling keyboard navigation. Us...

Results 102 tom-select issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When tom-select is used on a field with 'default value', the `clear()` method empty the tom-select field, but the `` field value is set to the default...

bug

**Describe the bug** When using theme `bootstrap 5` and the select has class `form-control-sm`, the entire select grows vertically when all items are deleted. **To Reproduce** 1. Go to https://tom-select.js.org/examples/styling/...

bug

I'v got error after update to 2.2.2 when trying to use Tom Select in Rails app and Stimulus controller like: ``` import { Controller } from "@hotwired/stimulus" import TomSelect from...

bug

**Describe the bug** The restore on backspace plugin only works on values which are already specified in the HTML tag "values". It does not work when entering new text values....

bug

### Bug description **Description**: When Tom Select is initialized on a form field that is set to be autofocused, the field loses its focus immediately upon page load. This issue...

bug

This fixes a small layout jerk when clicking one item in a multiselect . see #712

### Bug description When selecting an item with ctrl+click, the 1px grey border around it disappears, which makes the entire list of options jump by 2px ![image](https://github.com/orchidjs/tom-select/assets/552629/7292f7bf-a1b1-4fca-b498-8eb151504ef1) ![image](https://github.com/orchidjs/tom-select/assets/552629/f349e9e7-7051-405f-bb3a-9d43be249aba) ### Expected...

bug

### Bug description I created a TomSelect with the following options from the [Checkbox Options plugin](https://tom-select.js.org/plugins/checkbox-options/). Tabbing from this TomSelect appears to move focus to the end of the page...

bug

I have text file in json format with data ``` [ { "country": "USA", "state": "Texas", "city": "Houston", "link": "https://www.houston.us" }, { ... } ] ``` ### Expected behavior I...

bug

Changes dropdown_input to only use one input and keep focus on the input. This way aria-attributes are on the focused element at all times. This also changes how dropdown_input is...