This repository has been archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
UI Select Items Not Appearing in IE 8 #90
Comments
What version of Angular are you using? 1.2.18+? |
I'm using v1.2.15 |
I had this issue before adding all of the following lines: document.createElement('ui-select');
document.createElement('ui-select-match');
document.createElement('ui-select-choices'); in the index.html in a wrapper such as: <!--[if lte IE 8]>
<script>
document.createElement('ui-select');
document.createElement('ui-select-match');
document.createElement('ui-select-choices');
</script>
<![endif]--> |
Did anyone got a solution to this problem, I'm also facing this same issue |
+1 |
+1 |
Closing due to age of this issue - feel free to open a new issue if this is still a problem with the current release. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I view the example plunkr: http://run.plnkr.co/Uz2DH8wogGVCgtXZ noted in the README it appears as though the dropdown elements are not being bound into the DOM correctly and appear blank.
You can see in the IE DOM the actual a tag is not inside of the element. I'll keep looking to see if I can track down what's causing this.
The text was updated successfully, but these errors were encountered: