This repository was archived by the owner on May 29, 2019. It is now read-only.
This repository was archived by the owner on May 29, 2019. It is now read-only.
In uib-dropdown, input in uib-dropdown-toggle performs incorrectly in IE10 #6306
Open
Description
I put an input element in uib-dropdown-toggle, When I click the input element ,the dropdown-menu will open ,but the input will lose focus then, and i click the input twice it will get focus but the dropdown is close, can i keep the input focus and dropdown open at the same time?
This issue happens in IE10, Chrome is correct.
Angular: v1.4.0-rc.2
UIBS: 1.3.3 - 2016-05-22
Bootstrap: v3.3.5
Here is my code:
<div class="btn-group" uib-dropdown keyboard-nav>
<div class="input-group" uib-dropdown-toggle>
<input type="text">
</div>
<ul class="dropdown-menu" uib-dropdown-menu role="menu" aria-labelledby="simple-btn-keyboard-nav">
<li role="menuitem"><a href="#">Action</a></li>
<li role="menuitem"><a href="#">Another action</a></li>
<li role="menuitem"><a href="#">Something else here</a></li>
<li class="divider"></li>
<li role="menuitem"><a href="#">Separated link</a></li>
</ul>
</div>