This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
select multi: $render is called twice when $viewValue reference changes #11329
Labels
Milestone
Comments
Sounds reasonable. @tepez would you like to try to create a Pull Request with this fix - including a unit test? |
Sure @petebacondarwin. |
Sounds good |
Here's a test: @tepez Do you want to open a PR which includes this test or should I open one with your fix?
|
Thank you @Narretz I'd love if you could it. My two cents on this:
I guess these are mostly personal style preferences so feel free to ignore them. describe('calls to $render', function() {
var ngModelCtrl;
beforeEach(function() {
compile(
'<select name="select" ng-model="selection" multiple>' +
'<option>A</option>' +
'<option>B</option>' +
'</select>');
ngModelCtrl = element.controller('ngModel');
spyOn(ngModelCtrl, '$render').andCallThrough();
});
it('should call $render once when the reference to the viewValue changes', function() {
scope.$apply(function() {
scope.selection = ['A'];
});
expect(ngModelCtrl.$render.calls.length).toBe(1);
scope.$apply(function() {
scope.selection = ['A', 'B'];
});
expect(ngModelCtrl.$render.calls.length).toBe(2);
scope.$apply(function() {
scope.selection = [];
});
expect(ngModelCtrl.$render.calls.length).toBe(3);
});
it('should call $render once when the viewValue deep-changes', function() {
scope.$apply(function() {
scope.selection = ['A'];
});
expect(ngModelCtrl.$render.calls.length).toBe(1);
scope.$apply(function() {
scope.selection.push('B');
});
expect(ngModelCtrl.$render.calls.length).toBe(2);
scope.$apply(function() {
scope.selection.length = 0;
});
expect(ngModelCtrl.$render.calls.length).toBe(3);
});
}); |
Narretz
added a commit
to Narretz/angular.js
that referenced
this issue
Mar 24, 2015
Credits to @tepez for the fix Closes angular#11329
netman92
pushed a commit
to netman92/angular.js
that referenced
this issue
Aug 8, 2015
Credits to @tepez for the fix Closes angular#11329 Closes angular#11412
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
In the select directive there is a deep watch that calls
$render
if$viewValue
deep-changes. This happens either if it changes inside or if it's reference changed.It should only call $render in the first cases.
If the reference of
$viewValue
changes than this call is redundant because the shallow watch inngModel
will call$render
.I suggest something like:
Edit: Here is a plunker that show the issue
http://plnkr.co/edit/dWpTKH?p=preview
The text was updated successfully, but these errors were encountered: