-
Notifications
You must be signed in to change notification settings - Fork 532
Can't select item from the menu in IE11 #257
Comments
Hi Milena! Can you provide a reduced test case so we can help debug this problem? Perhaps it's reproducible in one of the examples? |
facebook/react#6614 |
I'm not sure how that React core issue relates to your original description. Is the autofill some how preventing you from selecting items from the menu? |
I just noticed this issue the latest version of Safari as well. UPDATE: So it looks like Safari is requiring a double-click on the item to select, versus a single-click in chrome. May not be related to the original issue. |
@gregdillon seems like the examples work fine (i.e. only require a single click to select) in Safari. Can you provide a reduced test case that demonstrates the problem? |
@CMTegner I'll keep looking. Not sure what is going on and it may be my implementation. I'll report back if/when I figure out. Thanks. |
Any news? I also have this issue with IE11 and EDGE. |
@rek can you create a reduced test case which reproduces the error? |
Working on it :) |
Is there a JSFiddle or anything I can start from to try and reproduce this there? |
@rek try this JSBin: http://jsbin.com/mipesawapi/edit?js,output |
We found a fix for this. Our problem was in our implementation. It was because we had a dynamic Id in the inputProps.id directly, once we changed this it started working. Here is what we changed it to:
|
@rek this didn't work for me. |
I found the bug in my code. In So I had something like this: Yeah, I know, it is anti-pattern since it renders all the items always but I had no unique id there. For some reason, in MS Browsers (IE11 & Edge) the items are not clickable till you assign a unique key for each item as key in Ensure that the key is unique, otherwise, the items might flicker. |
Hi, guys... I have a problem on IE11. When I open the menu, it shows my list, but I can't click on it to choosing some option. It looks like IE11 recognize the items just like a text but not links.. Can you help me?
The text was updated successfully, but these errors were encountered: