How to disable the header?
How to disable the header?
nachocab
Posts: 1Questions: 1Answers: 0
How can I hide or remove the header of a datatable using the Scroller extension?
I've tried this, but it didn't work:
drawCallback(settings) {
$('#dataTables_scrollHead').remove();
}
This question has an accepted answers - jump to answer
Answers
That's close, but because it's a class, not an identifier, you need
'.dataTables_scrollHead'
- see here ,Colin