adding autocompletion for Text?
See original GitHub issueWhat do you think? similar to Dropdown but user doesn’t need to scroll down much.
This is similar to jQuery, need to specify source
https://jqueryui.com/autocomplete/
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:10 (9 by maintainers)
Top Results From Across the Web
How to Add Autocomplete to Text Fields in Drupal 8 - Medium
1. The Drupal Autocomplete Form Element: Adding Properties to the Text Field · navigate to “Form” (you'll find it under “Entity”) · scroll...
Read more >How To Create Autocomplete on an Input Field - W3Schools
Step 1) Add HTML: Example. <!--Make sure the form has the autocomplete function switched off:--> ... /*insert the value for the autocomplete text...
Read more >Autocomplete suggestions for text inputs | Apps Script
Autocomplete suggestions for text inputs ... The Text Input widget lets your add-on read and react to text that users provide. You can...
Read more >8 - Adding autocomplete for text-field - Drupal Answers
After some digging, I found I had some custom css setting a z-index on a DOM element which contained the form. The value...
Read more >HTML attribute: autocomplete - MDN Web Docs
The HTML autocomplete attribute lets web developers specify what if any permission the user agent has to provide automated assistance in filling out...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think it makes a lot of sense to make a separate autocomplete widget.
As a note, I recently did https://github.com/vidartf/ipycombobox which is a simple widget based on the
<datalist>
HTML5 tag. I’ll open a PR for getting this into core, as this maps very well the concept of a combobox to basic HTML.