I tried to have jquery datatables and jScrollpane work together, it went well but one thing..
when I scroll the table to the right, the header doesn't seem to get along.
here's my code snippet on my html:
$("#my-table").dataTables({
// ...
"sScrollX": "100%",
"sScrollXInner": "150%",
"fnDrawCallback": function(){
$('.dataTables_scrollBody').jScrollPane();
}
});
does anyone have an idea?
any help would be appreciated :)
thanks..