You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
<body>
<div ng-app="app">
<br>
<form class="form" name="form" ng-controller="forms" novalidate="">
<div class="form-group col-sm-3">
<select ng-model="o.s" class="form-control" ng-options="value.id as value.value for value in opts" ng-change="changeOptions(o.s)">
<option value=""></option>
</select>
</div>
<div class="form-group col-sm-3">
<p>s = {{o.s}}</p>
</div>
<div class="form-group col-sm-3" ng-if="'true'">
<select ng-model="o.s2" class="form-control" ng-options="v.id as v.value for v in opts2">
<option value=""></option>
</select>
</div>
<div class="form-group col-sm-3">
<select ng-model="o.s2" class="form-control" ng-options="v.id as v.value for v in opts2">
<option value=""></option>
</select>
</div>
</form>
</div>
</body>
How to reproduce:
Using only the keyboard, tab to the first select and select the second value using the down key, this will trigger a ng-change that will update the options for the second select. Tab to the second select and select the first item, the displayed label will correspond to the first set of options. You will see that the select that it's surrounded by ngIf is displaying incorrect values while the select that doesn't shows the correct value.
This issue only occurs if the length of the options array matches and you have a blank option.
Expected result:
The labels should always match the selected option in the current ngOptions array.
Possible causes:
We think it could be related to the fact that ngIf clones the content of the element that it's attached to and the fact that selectDirective reuses DOM nodes instead of creating new ones.
This looks like an issue that @wesleycho has dealt with before, which is this weird behaviour where the browser does know the right list of options, but the label doesn't update.
I think he actually had a PR to fix one manifestation of this bug --- but yeah it seems to be a browser bug, where the label is not dirty'd when the set of options changes unless a click occurs or something.
I think this is fixable, but it may not be fixable without some performance cost
mmm, unfortunately that fix does not correct this behaviour. Usually this means we need to do something really hackish to make sure that IE dirties the input. This has a perf cost because A) it's more work, and B) it can unintentionally cause reflows and other unwanted nastiness. I don't know if we really want to solve it that way though.
We've spotted this issue while testing IE10 and it seems to be the only affected browser (we test chrome, firefox, ie10 and ie11).
Scenario:
-JS:
-HTML:
How to reproduce:
Using only the keyboard, tab to the first select and select the second value using the down key, this will trigger a ng-change that will update the options for the second select. Tab to the second select and select the first item, the displayed label will correspond to the first set of options. You will see that the select that it's surrounded by ngIf is displaying incorrect values while the select that doesn't shows the correct value.
This issue only occurs if the length of the options array matches and you have a blank option.
Expected result:
The labels should always match the selected option in the current ngOptions array.
Possible causes:
We think it could be related to the fact that ngIf clones the content of the element that it's attached to and the fact that selectDirective reuses DOM nodes instead of creating new ones.
Plunker that reproduces the issue:
http://plnkr.co/edit/DeOOqY3J0XnD0Dzc9w62?p=preview
The text was updated successfully, but these errors were encountered: