tokenfield icon indicating copy to clipboard operation
tokenfield copied to clipboard

Input field with tagging/token/chip capabilities written in raw JavaScript.

Results 12 tokenfield issues
Sort by recently updated
recently updated
newest added

If tokenfield is used inside flex container, input field incorrectly calculates the width and resolves when input is clicked or window is resized - [link to video](https://gyazo.com/14462bd4572c9f0aedb6ca00430e038d). The difference is...

I have added readonly functionality to the Token Field that allows it to display existing tokens without the user being able to add or remove tokens. We use this in...

Currently, the token removal action uses a link with an empty fragment identifier: ```html × ``` As this action changes page state, rather than requests a new page, it should...

Out of the box, a token field will capture focus when navigating a page using a keyboard, where it gets trapped. I’d be curious to hear if @KaneCohen you think...

If I allow to paste new items. i.e.: addItemsOnPaste: true, delimiters: [","] First, I paste: red, orange, yellow ![image](https://user-images.githubusercontent.com/6143434/138058178-f70bc96b-7447-44d9-8602-6b5bbf9f1cf9.png) After that I add a new Item from autocomplete. ![image](https://user-images.githubusercontent.com/6143434/138058339-1c9a6936-3b05-4aa8-b9e9-8aabe0a7846e.png) If...

When using html Tags inside the property defined as itemData the item is not selectable. ``` var tf = new Tokenfield({ el: document.querySelector('.my-input'), itemData: 'data', items: [{id: 1, name: 'foo',...

when using remote.type = POST the params are send as the string "{object:object}". I can make it work by changing `xhr.send(params);` to `xhr.send(paramsString);` in ajax.js#35 AND setting `headers: { 'Content-Type':...

When a form is returned by the server for render, the input element where I need my data has existing values already in place. Imagine you are in the edit...