How do I prevent Backbone Model events from propagating to Backbone Collections?
Edit:
Let's say I have something like the following, where CollectionView contains a collection of MyModels...
var CollectionView = Backbone.Collection.Extend({
initialize: function() {
this.collection.on("change", doStuff);
}
});
var ModelView = Backbone.View.Extend({
initialize: function() {
this.model = new MyModel();
this.model.on( "change", doStuff );
this.model.fetch();
}
});
If in a special case I did not want the "change" event to propagate up to the collection after fetch completes, I am wondering if there is any way to stop it.
Thanks