Specify an HTML table's element as a region in Marionette for Backbone.js

后端 未结 2 1958
[愿得一人]
[愿得一人] 2021-02-19 04:42

Problem

Using a Backbone.Marrionette.Layout to present some tabular data. The portion of the table is a Backbone.Marionette.R

2条回答
  •  长发绾君心
    2021-02-19 05:26

    Marionette 3 deprecated the CompositeView class. Instead, a region can now overwrite its el with the rendered contents of the inner View with the new replaceElement option.

    See this example to render a table:

    var RowView = Marionette.View.extend({
      tagName: 'tr',
      template: '#row-template'
    });
    
    var TableBody = Marionette.CollectionView.extend({
      tagName: 'tbody',
      childView: RowView
    });
    
    var TableView = Marionette.View.extend({
      tagName: 'table',
      className: 'table table-hover',
      template: '#table',
    
      regions: {
        body: {
          el: 'tbody',
          replaceElement: true
        }
      },
    
      onRender: function() {
        this.showChildView('body', new TableBody({
          collection: this.collection
        }));
      }
    });
    
    var list = new Backbone.Collection([
      {id: 1, text: 'My text'},
      {id: 2, text: 'Another Item'}
    ]);
    
    var myTable = new TableView({
      collection: list
    });
    
    myTable.render();
    

提交回复
热议问题