I'm using backbone relational and have a big app with a lot of nested models. let's say that we have a backbone relational model "bar" that have a has_many relation to a "foo" model. The problem is that when i'm using sub views that way :
new blablaView({model: this.model.getFoo()});
Everything works fine in the first time but after saving the bar model with :
this.model.save();
the reference to the foo model in blablaview is lost and changes that are made to the foo model are not applied to the bar model. Is that a way to keep references to sub models after saving ??