Specify an HTML table's <tbody> element as a region in Marionette for Backbone.js
问题 Problem Using a Backbone.Marrionette.Layout to present some tabular data. The <tbody> portion of the table is a Backbone.Marionette.Region that is meant to display a Backbone.Marionette.CollectionView. I can not figure out how to do this using Marionette's "Regions" without messing up the table display by inserting an extra HTML element inside the <tbody> element. Example Code The Layout looks like this: Backbone.Marionette.Layout.extend({ template:... regions:{ list_region: '#list-region' }