I’m using an autocompleter cell to enable user to select a value from remote data.
Remote data is a list of Book Titles like
- Astrophysics: it is great!
- Astrophysics: it is really complex!
- Stop studing Astrophysics
- ….
- …
The book titles could be hard to remind so a user should search for a set of words he knows in the title (ex. “great astrophysics”)
My API accepts that query and returns the book which contains all words in the title, also if not that order (API service use the string as a set of words [space] separated), but my autocompleter cell doesn’t show the result, cause it doesn’t match the typed string
Is it possible to config my autocompleter to accepts all results from remote API or to use the typed string as a set of [space] separated words (so it can still highlight words)?
Thanks
Diego