Editor: how to make a input field with auto-complete lists?
Editor: how to make a input field with auto-complete lists?
zipper
Posts: 35Questions: 9Answers: 0
Preferred: 1. when short keystroke interval, tries to list the matched from local (browser-side); 2. when long keystroke interval, tries to fetch by ajax from remote (server-side). This is very useful in the case to input a customer name (the whole list is too long to be listed in a drop-down). the ways and the interval should be configurable.
This discussion has been closed.
Answers
There are four different plug-in options that can be used to do an auto complete field in Editor - Chosen, Selectize, Select2 and jQuery UI AutoComplete. The integration plug-ins for Editor are available here.
If you prefer another library or a custom one, custom plug-ins can be created.
Allan
Thank you @allan for the suggestion.