bootstrap-table:如何将一个表嵌套到另一个表中?

时间:2016-01-24 22:21:34

标签: javascript jquery twitter-bootstrap-3 bootstrap-table

我正在使用此bootstrap-table。我想把一张桌子放到另一张桌子里。

$(document).ready(function() {
  var t = [{
    "id": "1",
    "name": "john",
  }, {
    "id": "2",
    "name": "ted"
  }];


  //TABLE 1
  $('#summaryTable').bootstrapTable({
    data: t,
    detailFormatter: detailFormatter
  });

  function detailFormatter(index, row, element) {
    $(element).html(row.name);
    $(element).html(function() {
      //I was thinking of putting the code here, but I don't know how to do it so it will work,
      //except javascript, it needs to be put this html code <table id="detailTable"></table>

    });


    //   return [

    //    ].join('');
  }

  //TABLE 2
  var t2 = [{
    "id": "1",
    "shopping": "bike",
  }, {
    "id": "2",
    "shopping": "car"
  }];
  $('#detailTable').bootstrapTable({
    data: t2,
    columns: [{
      field: 'id',
      title: 'id'
    }, {
      field: 'shopping',
      title: 'Shopping detail'
    }, {
      field: 'status',
      checkbox: true
    }],
    checkboxHeader: false

  });
  $('#detailTable').on('check.bs.table', function(e, row, $el) {
    alert('check index: ' + row.shopping);
  });
  $('#detailTable').on('uncheck.bs.table', function(e, row, $el) {
    alert('uncheck index: ' + row.shopping);
  });

});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.0/bootstrap-table.min.css" rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.0/bootstrap-table.min.js"></script>



<div class="container">
  <p>TABLE 1</p>
  <table id="summaryTable" data-detail-view="true">
    <thead>
      <tr>
        <th data-field="id" data-align="center" data-width="20px">id</th>
        <th data-field="name" data-align="center">Name</th>
      </tr>
    </thead>
  </table>
  <br>

  <p>TABLE 2</p>
  <table id="detailTable"></table>

</div>

以下是我演示的链接: fiddle

有两张桌子。表1具有可扩展的行,我想将表2放入表1的每一行。有一个名为detailFormatter的函数执行此操作,您可以在其中返回字符串或呈现元素(我正在使用它,但我不能使它工作)。对于这个演示,表1是用一些html代码创建的,表2只使用javascript,但是有一个初始div <table id="detailTable"></table>(对我来说无关紧要的方式)。 所以,问题是如何将表2放入表1并且有可能使用其事件(如检查或取消选中复选框)作为table2的演示显示?稍后,我想使用此事件onExpandRow因此,当用户展开表1的行时,它将从数据库中获取数据,并且它将填写表2。

2 个答案:

答案 0 :(得分:2)

好吧,只需克隆你的detailTable,然后将rowdetailFormatter放在一起,如下所示:

function detailFormatter(index, row, element) {
    $(element).html($('#detailTable').clone(true));
}

现在id会创建重复的clone,因此您只需更改id即可将其删除,如下所示:

function detailFormatter(index, row, element) {
     $(element).html($('#detailTable').clone(true).attr('id',"tbl_"+row.id));
}

此外,您可以隐藏#detailTable,因为您只需将其隐藏在另一个table中,一旦隐藏它,您需要将show添加到cloned tables因为所有属性都将被复制到clone(true)中,可以按照以下方式完成:

function detailFormatter(index, row, element) {
    $(element).html($('#detailTable').clone(true).attr('id',"tbl_"+row.id).show());
}
//.....
//.....
//.....
//At the end
$("#detailTable").hide();

<强> A complete DEMO

答案 1 :(得分:0)

我找到了另一种使用(部分)动态表创建将一个表嵌套到另一个表中的方法(参考我在使用bootstrap-table时发布的问题)。

var expandedRow = row.id;
$(element).html(
    "<table id='detailTable"+expandedRow+"'><thead><tr><th data-field='id2' data-align='center' data-width='20px'>id2</th>" +
    "<th data-field='shopping' data-align='center'>Shopping detail</th>" +
    "<th data-field='status' data-checkbox='true'></th>" +
    "</tr></thead></table>");

$('#detailTable'+expandedRow).bootstrapTable({
  data: t2,
  checkboxHeader: false
});

我认为这种方式更加独立。当时没有必要打开一个面板。事件和方法似乎工作正常。

Full code here.