0
隱藏頭表通常根據數據表中,我認爲有必要false
給出一個值fixedHeader
.withOption('fixedHeader', false)
的文件,但它不工作使用DTOptionsBuilder採用了棱角分明的DataTable
隱藏頭表通常根據數據表中,我認爲有必要false
給出一個值fixedHeader
.withOption('fixedHeader', false)
的文件,但它不工作使用DTOptionsBuilder採用了棱角分明的DataTable
使用CSS
嘗試破解
.inventory_related thead {
display: none;
}
<table>
<thead>
<th>header 1</th>
<th>header 2</th>
</thead>
<tbody>
<td>row value 1</td>
<td>row value 2</td>
</tbody>
</table>
<table class='inventory_related'>
<thead>
<th>header</th>
<th>header 2</th>
</thead>
<tbody>
<td>row value 3</td>
<td>row value 4</td>
</tbody>
</table>