I\'m trying to call render after fetch of a collection.
In my initialize method I have:
this.collection.bind(\'all\', this.render, this); this.collection
The following should work:
this.collection.on('reset', this.render); this.collection.fetch();
Normally in Backbone.js one would use on() to bind a callback to an object.