Select - Autocomplete
The select autocomplete functionality allows you to search for a specific option with result highlighting
Basic Example
Autocomplete functionality can be enabled using the autocomplete property.
There are some considerations to be made when using autocomplete:
- Search functionality is handled externally, using the
@searchevent - You must provide a loading state using the
loadingproperty, if done asynchronously - You must update the available
optionsarray manually
Async Example
Combining the select autocomplete with your backend search is easy. Here’s how to do it:
If you’re looking for an example that uses pagination as well, check out the Advanced Select section.