Backbone.js – change not triggering while the name change

Collection.fetch doesn’t trigger the change event. You only get the reset event. If you need more granular events, consider calling fetch with the options {update:true}.

that.fetch({update:true});

That will trigger change event for every model that was already in the collection, and add if the model was previously not in the collection.

Leave a Comment