Is it possible to put a view that is already rendered into a backbone marionette region without rendering it again?
For example:
region.show(myView); //
// assume your view is already rendered region.ensureEl(); region.open(myView);
this is not recommend though, use region.show(myView) if you can. Since it's gonna close the previous view to clean up all the event listeners, etc...