srigar / multiselect-react-dropdown

React multiselect dropdown with search and various options
https://10xn41w767.codesandbox.io/
MIT License
199 stars 113 forks source link

Dropdown is covered by other elements #153

Open ShawnRoller opened 2 years ago

ShawnRoller commented 2 years ago

Hi, I like the simplicity of using this library. I'm using this in a react-native-web project.

When I expand the options, the other elements below the options are rendered on top of the option list. I have tried setting the z-index on optionContainer but it seems to have no effect.

The workaround is for me to set a zIndex on all of my dropdowns manually, which is not ideal.

I would like to see a solution for overriding the CSS to explicitly set the z-index so that the optionContainer always appears over other elements when it is expanded.

Thanks!

Screen Shot 2021-10-15 at 12 45 45

.

njaouen commented 2 years ago

Hey. I have a similar issue, and I am also interested by a fix for this. In the meantime, would you mind sharing an example of how you have set your zIndex ? Thanks for sharing.

ShawnRoller commented 2 years ago

I had to set the zIndex of the view that contains the dropdown, and it is very hacky.

{fieldContainers.map((field, index) => ( <View style={{ zIndex: 999 - index }}><Dropdown… /></View> )

Hope that helps.

njaouen commented 2 years ago

I had to set the zIndex of the view that contains the dropdown, and it is very hacky.

{fieldContainers.map((field, index) => ( <View style={{ zIndex: 999 - index }}><Dropdown… /></View> )

Hope that helps.

Thanks !

srigar commented 2 years ago

Seems not reproduceable in browser, will check in react-native.

DustinsCode commented 2 years ago

Also having this issue in NextJS. Tried adding a z-index to the optionListContainer class and had no success.

HastiSutaria commented 4 months ago

Having the same issue. Adding z-index to "optionListContainer" class in styles prop don't work.