Select options are opened in top left window corner (if MenuProps->TransitionProps->onEntering is provided) #13635
DominikSerafin posted onGitHub
<!--- Provide a general summary of the issue in the Title above -->
<!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. -->
<!-- Checked checkbox should look like this: [x] -->
- This is not a v0.x issue. <!-- (v0.x is no longer maintained) -->
- I have searched the issues of this repository and believe that this is not a duplicate.
Expected Behavior
<!--- Describe what should happen. -->
Select options position on screen should open close to the input position
Current Behavior
<!--- Describe what happens instead of the expected behavior. -->
Select options position on screen opens in top left window corner
Steps to Reproduce
<!--- Provide a link to a live example (you can use codesandbox.io) and an unambiguous set of steps to reproduce this bug. Include code to reproduce, if relevant (which it most likely is). This codesandbox.io template may be a good starting point: https://codesandbox.io/s/github/mui-org/material-ui/tree/master/examples/create-react-app If you're using typescript a better starting point would be https://codesandbox.io/s/github/mui-org/material-ui/tree/master/examples/create-react-app-with-typescript If YOU DO NOT take time to provide a codesandbox.io reproduction, should the COMMUNITY take time to help you? -->
Link: https://codesandbox.io/s/6vo1kkz64k (everything related is in src/pages/repro.js
file)
- Add Select component
- Load options of that Select component dynamically after first render (e.g. via AJAX)
- Click on that Select component
- Observe in which position on the page the Select component options open
Context
<!--- What are you trying to accomplish? How has this issue affected you? Providing context helps us come up with a solution that is most useful in the real world. -->
We are using dynamic options loading in our app for dynamic filtering. Without going into too much detail:
We have 2 filters. One filter is "location" filter (not related to window.location
). Second filter is "user" filter. Both filters are implemented with Select components.
The second "user" filter depends on the value of first "location" filter. If the value of first "location" filter changes, then we reload "user" filter options that depend on the selected "location" filter value.
We use that functionality in multiple places in the app.
Your Environment
<!--- Include as many relevant details about the environment with which you experienced the bug. If you encounter issues with typescript please include version and tsconfig. -->
Tech | Version |
---|---|
Material-UI | Tested on v3.4.0 & v.3.5.0 & v3.5.1 |
React | Tested on v16.5.2 & v16.6.3 |
Browser | Tested on Chrome 69 & 70 & MS Edge 42 |
TypeScript | |
etc. |
This started to happen when we upgraded to @material-ui/core
v.3.4.0.
Since then we've downgraded to v3.3.2 where this doesn't happen.