The issue is with chrome and IE. If we add scrolling option while making datatable the table header not aligned with the table. otherwise it is fine.
"scrollY" : 200, "scrollCollapse" : true, "sScrollX" : "100px",
Hi we can solve the issue by adding our own custom scrolling facility.
steps:)
$('#'+tableId).wrap("<div class='scrolledTable'></div>");
.scrolledTable{ overflow-y: auto; clear:both; }