I'm building a form to collect species observations in the field.
I've created a select_one autocomplete field that is backed by a list of species choices. However, I can't figure out how to allow the user to enter a species that is not included in the list. I've used a select_one autocomplete field to increase the speed of data entry (i.e., type one or two letters and easily select the autocomplete suggestion).
Requirements of the field "species" (currently backed by choices "species_choices"):
- Must be rapid to enter data (i.e., enter hundreds of entries per 1-2h). The number of clicks on the device must be reduced as much as possible (if too many clicks/taps are required, this limits the usefulness of the form)
- Users can pick from 1000's of existing values of species
- Must have the option to enter a value that does not exist in the species list
I'm happy to provide additional info if the above is not clear. Thank you!