-
Notifications
You must be signed in to change notification settings - Fork 3.4k
md-select causes page to jump when an option is clicked, only in IE #4640
Comments
Actually, the problem is not with I managed to hotfix this in my codebase like this (SCSS): _:-ms-input-placeholder, :root {
body[style] {
position: inherit !important;
top: inherit !important;
width: inherit !important;
}
.md-click-catcher.md-wbTheme-theme {
height: 100%;
position: fixed;
width: 100%;
}
} This prevents the page from jumping when a select is closed, but the whole thing is broken nonetheless, performance on IE is still really bad, and this is a dirty fix. |
thanks @wolfika thats what i am looking for |
@wolfika Thanks for the solution. This solves the page jump issue when we open the md-select dropdown. But when we select any option from the dropdown that time page jumps. Is there any fix for the same? |
This fix actually caused a different problem for me. With this solution applied, the open menu does not remain positioned above its parent element, but instead scrolls with the page. |
Is there an equivalent workaround for md-dialog similar to the one above by @wolfika? |
Here is my workaround for md-dialog Here is a workaround. Just move the scroll from the body element to an inner element like below: < body>
< div id="container">
< /div>
< body> // Style
body{
height: 100%;
width: 100%;
overflow: hidden;
}
#container{
height: 100%;
width: 100%;
overflow-y: scroll;
} |
md-select causes page to jump when an option is clicked, only in IE. Works fine in chrome and FF. But trying in IE11, it does this.
Any workarounds?
The text was updated successfully, but these errors were encountered: