0

Normally according to the documentation of Datatables I think it is necessary to give a value false to fixedHeader .withOption('fixedHeader', false) but it does not work

Sagiliste
  • 27
  • 1
  • 5

1 Answers1

0

Try hack using 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>
digit
  • 4,479
  • 3
  • 24
  • 43