is there no other ways to set fixed header on jquery datatables??
when i try using fixed header, there\'s warning that fixed header 2 is not supported on scrolling datat
For implementing Fixed header in jQuery Datatable, Please add "FixedHeader.min.js" in page header and add following code to page:
var oFH = new FixedHeader(oTable); $('#tablename thead th:eq(0)').html('First column'); oFH.fnUpdate();
Hope this will help you.