I would like to know what is the recommaned way of nesting Backbone Views.
Possible ways to nest views:
- Render all views and put them together in the Router
- Let an IndexView do all the nesting which is called in the router
- Include views in underscore templates
I tried my luck already in this fiddle: http://jsfiddle.net/m48Nc/2/
Annotation: I know that the example doesn't work it just shows the structure, I figured out currently, but am not happy about it.
So which way is to go? Links are also welcome ;)
UPDATE:
Using fguillen answers and another thread I found we can do:
var IndexView = Backbone.View.extend({
tagName: "div",
className: "container",
template: LayoutTemplate,
render: function() {
this.$el.html(LayoutTemplate);
this.$('div.content').html(ContentTemplate);
this.$('div.sidebar').append(new LoginView().render().el);
this.$('div.sidebar').append(new RegistrationView().render().el);
return this;
}
});