I'm trying to render two instances of an ItemView into different regions. When I do this, only one region appears with the working javascript. Both instances have their html elements.
I have two files that are both Layouts. One calls
var monthView = new CalendarView({ parentDivName: "full_screen" });
App.mainRegion.show(monthView);
The other calls:
var monthView2 = new CalendarView({ parentDivName: "full_screen22" });
App.datePickerRegion.show(monthView2);
Does anyone have a fiddle they can share where two instances of an ItemView are rendered on the same page where the javascript within the ItemView can be visible? Or, am I going about this all wrong? Is there a better way to create multiple instances of the same ItemView?