-
Notifications
You must be signed in to change notification settings - Fork 27.4k
digest issue with ng-form with validators on a ng-repeat when using ng-animate on 1.4.1 #12161
Comments
I have exactly the same issue. I have this code working on 1.3.16 but when I update to 1.4 it stop working. The ng-repeat is not updating the data. |
ping @Narretz @petebacondarwin I think this is a bug |
Wow ! Impressive combination of prerequisites:
I suspect it has something to do with some class-based animation on the FWIW, it broke in |
@Nomack84 in the meantime, you could just add another element inside your ng-repeat element: |
It doesn't work. If you are more than 1 item, it stop working adding items. 2015-06-19 11:50 GMT-05:00 Jerome Louis notifications@github.com:
Ing. Mario A. Alvarez García |
@Narretz is right. I updated both plunkr. |
ngAnimate inconjunction with ng-repeat causes a rootScope digest/apply per element animated. This is the actual angular ng-repeat animation plunkr modified to demostrate the issue. You need to open inspector and view console log. Then type 'j' in the search field No Animation - 2 digests happen on the rootscope level (for dirty checking) Animation class on ng-repeat 8 digests happen - 1 rootscope digest per element animated This is the easiest way to illustrate it. Is this desired behaviour? If its going to digest shouldnt it just digest the scope its in rather than do an $apply and bubble digests all the way up/down from the rootscope? |
@startswithaj I don't see how this is immediately relevant to the issue at hand. The problem here is that animate does not remove the elements properly. @matsko Do you think you could take a look at that next week? |
@matsko this issue is due to first leave animation is called after that remove class is called on same element so when ngAnimate merge the animation option in mergeAnimationOptions it overrides the leave callback so the element remains unremoved, i had already created one PR for this #12271, you can check if this method of fixing is ok or need to fix is other way. |
@Narretz your totally right, I'm not even sure why i put this comment here. I suspect I was suppose to make this comment on another ticket relating to ng-animate. |
…ow-up animation Closes angular#12271 Closes angular#12249 Closes angular#12161
…ow-up animation Closes angular#12271 Closes angular#12249 Closes angular#12161
thanks for fixing!!! |
When there is a ng-form directive on a ng-repeat directive, and there are validations in fields inside that form, the deletion of an element in the list is not reflected in the ng-repeat.
http://plnkr.co/edit/Er0thSHyCg0s2lvGO8SP
(ng-form and ng-repeat are on the same element)
The text was updated successfully, but these errors were encountered: