In my data table have a lot of data without pagination and scroll required. I found library jQuery-doubleScroll but it doesn't work with DatTables, cause is that DatTables add some parent divs to the original table, solution is to wrap table with own div and use it for double scroll. Here is short example:


$('#product-table').dataTable({
"sPaginationType": "full_numbers",
"aaSorting": [],
"bPaginate": false,
"bScrollCollapse": true,

});

$('#product-table').wrap("");
$('#scrooll_div').doubleScroll();