Closed mbyrne00 closed 4 years ago
Note the introduction of the Autocomplete component in the lab.
That looks promising @oliviertassinari - I'll take a look at that for new components and see if we can swap over. Thanks.
Hi @mbyrne00,
I added to storybook your issue and it works correctly there. Please check the code of the storybook for issue#28 and in case your code is "different" than this and the problem is still reproducible by you with the latest version of react-select-material-ui please send me a code which should reproduce it in storybook.
Thanks, Iulian
The issue should have been fixed upstream now.
Thanks @oliviertassinari.
Then I will close this issue.
Cheers, Iulian
Hi - material-ui have set a
z-index: 0
onFormControl
by default with their latest update. I raised an issue with them to state that it will break components like this one: https://github.com/mui-org/material-ui/issues/19677If they decide not to fix it this library could add
style={{ zIndex: 1 }}
or evenstyle={{ zIndex: 'unset' }}
to theFormComponent
it renders to avoid issues where the dropdown appears behind checkboxes.My workaround is to do this from my calling component for now.