-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Menu list is not shown in a scrollable div #637
Comments
After investigating a bit more and dig into the code of react-datepicker to see how they do it I found that this control uses tether library to have the pop up absolute positioning and always to the right spot. Is there any interest to submit a pull request and follow the same approach to solve the issue? @JedWatson |
Is this fixed in latest 1.0-beta? I would love to give react-select a try but this issue would be a job stopper for us. |
Any fix this issue? |
@guilleCM if you use react-select v2, there is an option to use portals to solve this issue: |
When we render the select component inside a div that has overflow auto and there is not enough space for the menu to appear then we need to scroll to be able to see all the options. You can see an example here
![select](https://cloud.githubusercontent.com/assets/487416/11473084/c57812fc-9770-11e5-9f31-46a8c6aee34b.png)
Instead a behavior like on that follows would be better
Both of the pop ups are absolute positioned but I couldn't find any other differences
The text was updated successfully, but these errors were encountered: