JS dataTables.fixedHeader标题和数据之间的不同宽度
我使用JavaScript插件dataTables.fixedHeader并用ajax填充数据。 现在我遇到了问题,即每个数据列的宽度都是动态的,并且标题保持相同的静态宽度。
码:
HTML:
<table class="table table-striped table-bordered table-hover" id="custTable">
<thead>
<tr>
<th>
......
</th>
<th>
......
</th>
<th>
......
</th>
......
</tr>
</thead>
<tbody id="dataList"></tbody>
</table>
JS:
table = $('#custTable').DataTable({
"dom": "frtiS",
"deferRender": true,
});
填充:
$('#custTable').dataTable().fnAddData([
xyz, xyz, xyz, ...
]);
禁用自动列宽。
JS
table = $('#custTable').DataTable({
"dom": "frtiS",
"deferRender": true,
"autoWidth": false
});
http://datatables.net/reference/option/autoWidth
链接地址: http://www.djcxy.com/p/27191.html上一篇: JS dataTables.fixedHeader different width between header and datas