I am experimenting with master-detail stuff using Backbone js and Marionette. How can I go about changing the model for a view? I want the view's model listeners to be removed from the old model and applied to the new one. Ditto for other similar stuff related to the model. Anyone got some 'changeModel' code to do this cleanly?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by mu is too short, rene, SliverNinja, stealthyninja, philant Oct 13 '12 at 19:02
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Wouldn't it be easier to just destroy the old view and make a new one based on a different model? In this example I pass the model itself into the ItemViewOptions, and on the model I have some defining characteristics... and since the model comes from the server I can manipulate what happens View. This one is for binding a dynamic templates, but I guess you could do something with events as well. This would require you to destroy whatever you have first rather than re-binding everything.
|
|||
|