-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Selecting scroll bar in IE 11 closes Select List #3733
Comments
I can confirm, this is definitely an issue for me, too. |
I've added this directly to materialize.js (which you should instead add to your own include/script/override to not be horrible):
Also in materialized.js I've updated the following binding to this:
Terrible hacks... but maybe someone else can see what is going on and make a more elegant fix/solution. |
@Romanulus @AAAnderson7301 Could someone check if this is still an issue? |
The issue is still present in IE11. I'm using v0.98.0 |
in materialize.js , find it >$newSelect.on('blur', function() { and append this >
$newSelect.on('mousedown', onMouseDown);
try it |
Fixed in v1-dev |
is it possible to know which commit is responsible for the fix? |
hey @frostless, I'm currently struggling with this issue, and I think you won't find an exact commit, as @Dogfalo commented here, they reimplemented this component, so probably it's not possible to simply copy the piece of code and paste it |
Many above methods work, but if we do e.preventDefault(); then we lose the browser typing context ability. I mean if you type a letter, the select wont go to the item anymore, any workaround with this? |
When selecting the scroll bar in IE 11 the drop down closes. Only can scroll with wheel
http://jsfiddle.net/8rmjymtr/5/ - borrowed jsfiddle from another issue to highlight the problem,
The text was updated successfully, but these errors were encountered: