I have multiple listeners in my initialize for my view, looks like this:
this.collection.on('reset', this.render);
this.collection.on('add', this.render);
this.collection.on('change', this.render);
I’m curious if there’s a way to combine all of them since they all fire the render
May be you can try
Look at this. It works as its displayed there, but not sure about binding it with default collection events.