I\'m looking for a better solution for two things:
How can I understand if the data is fetched and ready, I use BasicDealList.on(\"reset\", function()
BasicDealList.on(\"reset\", function()
We needed a way to tell if a RelationalModel's relation had been fetched or not. This is our solution (in Coffeescript).
initialize: (objects, options) -> @fetched = false @listenTo @, 'sync', -> @fetched = true