backbone marionette - displaying a view in a layout region which has already been rendered
- by Justin Wyllie
I have something like this:
//render the layout
Layout.layout = new Layout.Screen();
MyApp.SomeRegion.show(Layout.layout);
//render a view into it
var mView = new CompositeView({collection: data});
Layout.layout.SomeRegion.show(mView);
That all works fine.
The layout has 3 regions. The above has rendered a view into one of them.
Now, later, I…