I have a datatable in my program. And I want it to be scrollable horizontally so what I did was like this:
var tableI = $(\'#table_data\').DataTable({ \"bLe
The solution was simple in my case. Just include this on your css:
/* Override sorting header --> DataTable Bug */ .dataTables_scrollBody > table > thead > tr { visibility: collapse; height: 0px !important; }