With ember-data I\'m loading all records of a model with:
App.adapter = DS.Adapter.create({ findAll: function(store, type) { var url = type.url; jQ
Yes, you can use findQuery, and then observe .isLoaded property on the ModelArray.
findQuery
.isLoaded
ModelArray
e.g:
load: -> @set 'data', @get('store').findQuery App.MyModel, { q: '...' }
And have the observation:
loadingComplete: ( -> @doSomeStuff() if @getPath 'data.isLoaded' ).observes 'data.isLoaded'