I use emberjs-data
allProcessPointsAreLoaded:(->
@get("reportDefinition.virtualColumns").everyProperty("processPoint.isLoaded", true)
).property("reportDefinition.virtualColumns.@each.processPoint.isLoaded")
my property is not updated when processPoint.isLoaded changed to true. Any thoughts?
The latest ember-data has an isLoaded property on the whole content collection, instead of just each field. In my view I monitor the path ‘controller.content.isLoaded’ to determine when all the content is there.