[AngularJS] Re: ngFor on Array of objects not updating DOM elements properly

2016-11-10 Thread Marc-Antoine Roberge
can you post a plnkr of how you did it ? -- You received this message because you are subscribed to the Google Groups "Angular" group. To unsubscribe from this group and stop receiving emails from it, send an email to angular+unsubscr...@googlegroups.com. To post to this group, send email to

[AngularJS] Re: ngFor on Array of objects not updating DOM elements properly

2016-10-10 Thread SLV SNZ
Resolved: In order to get *all* DOM elements/objects inside ngfor updated: I had to create a new component, and then instanciate the component inside the ngFor. now elements are properly updated as they were in RC4... Le mardi 4 octobre 2016 11:25:46 UTC+2, SLV SNZ a écrit : > > After

[AngularJS] Re: ngFor on Array of objects not updating DOM elements properly

2016-10-04 Thread SLV SNZ
After checking angular 2 release updates I see where the problem comes from: in RC5 --> "core: ensure ngFor only inserts/moves/removes elements when necessary" I compared my projects RC4 and 2.0.1 and all elements are updated only in RC4 (as expected) * there is a way to bypass this? and have