jQuery データテーブル V 1.9.4 を使用しています。これは私のhtmlコードです。
<table id="file_list" class="file_list">
<thead>
<tr>
<th class="rowBorder">File</th>
<th class="rowBorder">Date</th>
<th class="rowBorder">Size</th>
<th class="rowBorder">Type</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
これは、データテーブルを初期化するための私の js コードです。
oTable = $('#file_list').dataTable(
{
"bFilter": false,
"bInfo": false,
"iDisplayLength": 50,
"bLengthChange":false,
"bPaginate": false,
"sScrollY": 200,
"bAutoWidth": false,
}
);
私の問題は、datatable ヘッダーが 2 回表示されることです。この問題を解決する方法。前もって感謝します。