Problem
Using a Backbone.Marrionette.Layout to present some tabular data. The
Is the intent of this layout solely to facilitate a table? If so, you should look at using a CompositeView instead. That's pretty much it. This will render all of your itemViews in to the tbody. portion of the table is a Backbone.Marionette.R
RowView = Marionette.ItemView.extend({
tagName: "tr",
template: ...
});
TableView = Marionette.CompositeView.extend({
template: ...,
childView: RowView,
childViewContainer: "#list-region"
});