在数据表中使用行跨度

时间:2018-12-12 06:26:18

标签: javascript jquery html datatables handlebars.js

click()

我必须在ajax请求之后动态呈现一个表,并想按cofiguration-name对行进行分组。当我在数据表中使用rowspan时,仅呈现简单表,并且出现控制台错误:

jquery.dataTables.min.js:24未捕获的TypeError:无法将属性'_DT_CellIndex'设置为未定义

我正在使用handlebars.js填充表格模板

数据表: https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js“> https://cdn.datatables.net/1.10.19/js/dataTables.bootstrap.min.js“>

有没有一种方法可以在保持Datatable功能的同时以这种格式生成表。

enter image description here

1 个答案:

答案 0 :(得分:1)

$(document).ready(function() {
   var table = $('#example').DataTable({
      'ajax': 'https://api.myjson.com/bins/qgcu',
      'rowsGroup': [2]
   });   
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://cdn.datatables.net/v/dt/dt-1.10.12/datatables.min.js"></script>
<script src="https://cdn.rawgit.com/ashl1/datatables-rowsgroup/fbd569b8768155c7a9a62568e66a64115887d7d0/dataTables.rowsGroup.js"></script>
<link href="https://cdn.datatables.net/v/dt/dt-1.10.12/datatables.min.css" rel="stylesheet"/>
<h3>jQuery DataTables - ROWSPAN in table body TBODY</h3>

<hr><br>
    
<table id="example" class="display" cellspacing="0" width="100%">
   <thead>
      <tr>
         <th>Name</th>
         <th>Position</th>
         <th>Office</th>
         <th>Extn.</th>
         <th>Start date</th>
         <th>Salary</th>
      </tr>
   </thead>
   <tfoot>
      <tr>
         <th>Name</th>
         <th>Position</th>
         <th>Office</th>
         <th>Extn.</th>
         <th>Start date</th>
         <th>Salary</th>
      </tr>
   </tfoot>
</table>

使用https://cdn.rawgit.com/ashl1/datatables-rowsgroup/fbd569b8768155c7a9a62568e66a64115887d7d0/dataTables.rowsGroup.js外部库并在数据表配置中应用'rowsGroup': [index_of_column]。 希望对您有帮助。