What is the best way to find out when an object was retrieved from remote storage in ember data?
I need to make a call to retrieve the data, but I need some values from the selected ember-data object.
I am currently using this approach, but I am sure there is a better way.
contactLoaded: function(){
if(!this.getPath('contact.isLoaded')){
return;
}
}.observes('App.contact.isLoaded')
source
share