How to disable filtering options in material-ui Autocomplete? How to disable filtering options in material-ui Autocomplete? reactjs reactjs

How to disable filtering options in material-ui Autocomplete?


The filterOptions method is intended to give you the freedom to decide which options will be available and which will be hidden.

If you just want to show all options - just implement the filterOptions to return all the values:

filterOptions={(options, state) => options}