-
Notifications
You must be signed in to change notification settings - Fork 3.4k
IE10 Placeholder blocking input focus #1394
Comments
Note: We don't support IE9, only n-1 browsers (and IE11 is the latest). |
Good to note for the label blocking focus, however, as the original bug still seems to stand and be a real hindrance on usability |
@Mutmatt - Is this an IE9 or IE10 issue? |
@ThomasBurleson IE10 placeholder blocks input focus. IE9 had a different issue but due to not being supported (and IE10?) this is a non-issue |
@Mutmatt can you confirm whether this is still happening? The input demos on http://material.angularjs.org do not have any focus problems in IE10 that I can find. First name has a placeholder and it can take focus and a value without any issues. |
This is, indeed, still broken in IE10. See First Name: https://material.angularjs.org/#/demo/material.components.input |
Yeah, I looked at it in IE10 and it worked fine. Can you describe the issue in more detail, and try another machine? Thanks. |
I will give it another shot on a different machine. This one is currently Win 8.1. The behavior i am seeing is clicking on the area where the placeholder is (albeit not visible) does not trigger the float label to float. I will check back in after testing on a second/third machine. |
Ok, I see it now. It takes a few clicks to register. But not every time! Fun. |
pointer-events: none does not work in IE10 Closes #1394
With the placeholder value set it seems to be blocking the clickability of the input field. This can be seen in the demo as well First Name. I don't like the fix i have locally but i added a z-index: 0; to my placeholder as a work around. I attempted to bind a click event to the placeholder but it seems that it was being caught somewhere on the chain. Not sure if IE9 is a worry but similar issue is occurring with the label click, this i solved with a
The text was updated successfully, but these errors were encountered: