In the guide, it is said the didUpdateAttrs
will be called when there is a change in the attributes used by the template.
But the hook is not called while an object is added or removed from an array.
Here is a twiddle stating it.
Correct me if I got anything wrong.
I brought this up on Slack not long ago, and as Gaurav0 mentions, itβs expected behavior. Here is my Twiddle about the issue but with Objects. Solution is to call .notifyPropertyChange()
1 Like
sajid
July 25, 2016, 11:44am
4
Is that mean you called notifyPropertyChange() in Component class or other way ?
then how didUpdateAttrs() works ?
The other way around. Calling it outside the Component will then trigger the hook.
You can make use of [arrayContentDidChange] (MutableArray - 4.6 - Ember API Documentation ) to keep track of the added and removed objects/primitive