-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Observing nested objects properties in ArrayProxy fails when using @each, works with explicit index #12328
Comments
I believe this might be related: #12329 |
Yes, I also thought of referencing this issue in your issue. |
@kuzirashi I don't believe observing nested properties are supported See: http://guides.emberjs.com/v1.13.0/object-model/computed-properties-and-aggregate-data/
|
this is actually meant to say you cant do. |
Using dependencies |
|
i believe @rwjblue is going to be adding a warning |
Observing nested objects properties in ArrayProxy fails when using @each, works with explicit index like 0.
Having ArrayProxy:
This fires correctly when property changes (using concrete index - 0 and content):
This doesn't (using each and content):
Neither:
Using Ember version:
Issue is that:
isn't logged, and using
@each
in observing objects properties inArrayProxy
doesn't work.The text was updated successfully, but these errors were encountered: