在骨干视图中如何以及在何处初始化jquery数据表

时间:2013-03-20 12:14:13

标签: javascript jquery-plugins backbone.js datatable backbone-views

我的html模板如下所示:

   <script type="text/template" id="players-template">
        <table id="example" class="table table-striped table-bordered table-condensed table-hover">
            <thead>
                <tr>
                    <th>Name</th>
                    <th>group</th>
                    <th></th>
                </tr>
            </thead>
            <tbody id="playersTable"></tbody>
        </table>
    </script>  


    <script type="text/template" id="player-list-item-template">
        <td><@= name @></td>
        <td>
            <@ _.each(hroups, function(group) { @>
            <@= group.role @>
            <@ }); @>
        </td>            
    </script>

我的骨干观点如下:

   playerView = Backbone.View.extend({
    template: _.template( $("#player-template").html() ),
    initialize: function () 
        if(this.collection){
            this.collection.fetch();
    },
    render: function () {
        this.$el.html( this.template );
        this.collection.each(function(player) {
            var itemView = new app.PlayerListItemView({ model: player });
            itemView.render();
            this.$el.find('#playersTable').append(itemView.$el);
        },this

 });

 // view to  generate each player for list of players
PlayerListItemView = Backbone.View.extend({
   template: _.template($('#player-list-item-template').html()),
       tagName: "tr",
      render: function (eventName) {
        this.$el.html( this.template(this.model.toJSON()) );
         }
  });

以上代码完美无缺。现在,我想使用apply jquery datatable插件和bootstrap支持。您可以在此处找到详细信息:http://www.datatables.net/blog/Twitter_Bootstrap_2 所以,我刚刚将渲染中的行添加为:

        render: function () {
        this.$el.html( this.template );
        this.collection.each(function(player) {
                var itemView = new app.PlayerListItemView({ model: player });
               itemView.render();
              this.$el.find('#playersTable').append(itemView.$el);
              $('#example').dataTable( {
                console.log('datatable');
                "sDom": "<'row'<'span6'l><'span6'f>r>t<'row'<'span6'i>   <'span6'p>>",
                "sPaginationType": "bootstrap",
                "oLanguage": {
                    "sLengthMenu": "_MENU_ records per page"
                },
                "aoColumnDefs": [
                  { 'bSortable': false, 'aTargets': [ 2 ] }
               ]
            } );
        },this);

    },

现在,jquery datable未初始化。他们只是显示正常表格。

  • 我应该在哪里初始化表以应用jquery datatable?
  • 他们完美无缺地工作。

1 个答案:

答案 0 :(得分:5)

最有可能的是,jQuery插件需要页面上的元素才能工作。您没有在该视图上显示您在render处调用的位置,但我将假设您正在执行以下操作:

var view = new PlayerView();
$('#foo').html(view.render().el);  // this renders, then adds to page

如果这是真的,那么在渲染中使用插件太早了,因为视图的html尚未添加到页面中。

你可以试试这个:

var view = new PlayerView();
$('#foo').html(view.el);   // add the view to page before rendering
view.render();

或者你可以试试这个:

var view = new PlayerView();
$('#foo').html(view.render().el);
view.setupDataTable();    // setup the jQuery plugin after rendering and adding to page