Im trying to utilize Backbone's view events hash to bind a change event to the current view's collection:
events: {
'this.collection change': 'render'
}
as opposed to my current method:
initialize: function() {
this.collection.on('change', this.render, this);
}
but this does not seem to fire the event. Are their limitations on binding events to collections using the events hash?