-
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
[V2] IE11 vertical scrollbar #2816
Comments
I have the same issue in IE11. Hope it will be get soon carried out. Do you have any idea to make a quick fix? |
The issue is discussed here #1020. Unfortunately, it is not fixed. |
Here is quick patch for current version based on Rakid's code:
(assuming that this.rs is ref to React-select component) |
Nice. This quick patch works in my IE 11. |
The code works good, but in my case I am using Edit:Actually I need to set the innerRef in the Here is what I have: import { FixedSizeList as List } from 'react-window';
class MenuList extends React.Component {
render() {
return (
<List
outerRef={this.props.innerRef} // I needed only this row
height={this.props.maxHeight}
itemCount={this.props.children.length}
itemSize={this.props.rowHeight}
>
{({ index, style }) => <div style={style}>{this.props.children[index]}</div>}
</List>);
}
}
export default MenuList; And I use the import Select from 'react-select';
import MenuList from '../../MenuList'
<Select
components={ MenuList }
// ...
> Note:The code in quotes was already implemented in |
Upgrade to the current version? This seem to be fixed now and the patch is not needed anymore. |
Yes it's fixed, I was editing my previous comment with the solution I found, but obviously I forgot to click save 🤓 (Grateful that my browser keeps tabs and input data cached, bеcause electricity was accidentally stopped 😄 ) |
Hello - In an effort to sustain the We understand this might be inconvenient but in the best interest of supporting the broader community we have to direct our efforts towards the current major version. If you aren't using the latest version of However, if you feel this issue is still relevant and you'd like us to review it - please leave a comment and we'll do our best to get back to you! |
Opening the first select component of the demo page in Internet Explorer 11 shows a scrollbar, but clicking on this scrollbar closes the selector menu.
The text was updated successfully, but these errors were encountered: