iulianraduat / react-select-material-ui

A react SELECT component based on react-select and looking like a material-ui component
MIT License
73 stars 18 forks source link

Async support #22

Open kirill-konshin opened 5 years ago

kirill-konshin commented 5 years ago

I searched this repo for async but haven't found any documentation/examples.

Is https://react-select.com/async#loading-asynchronously supported by this component?

iulianraduat commented 5 years ago

All props supported by ReactSelect are also supported by ReactSelectMaterialUi as it passes down all the props to the wrapped ReactSelect component. If you have a concrete code for a bug, please post it here. Thanks.

guiihlopes commented 5 years ago

All props supported by ReactSelect are also supported by ReactSelectMaterialUi as it passes down all the props to the wrapped ReactSelect component. If you have a concrete code for a bug, please post it here. Thanks.

@iulian-radu-at Async Select is like Creatable, another component.

keemor commented 3 years ago

@guiihlopes @kirill-konshin Autocomplete straight from material-ui can be used in this case: https://material-ui.com/components/autocomplete/#asynchronous-requests

keemor commented 3 years ago

@guiihlopes @kirill-konshin

Here's an example of react-select-material-ui & react-select-async-paginate with paginated lazy loaded drop down

https://codesandbox.io/s/custom-select-base-forked-y1won?file=/src/App.jsx

iulianraduat commented 3 years ago

Thanks @keemor for your links