Table layout is different in IE 8
Table layout is different in IE 8
fshafeeq
Posts: 10Questions: 0Answers: 0
I really like dataTables but I came across a problem. Table layout changes if view it on different version of IE. I have IE9 and when I was done designing everything looked good but when another user whos using IE 8 loaded the page table layout was different this user had to change the page zoom to 75% to see the correct layout. Also if the widow is minimized or maximized table heading size doesnt change according to the size and heading is not aligned with the TD. Any suggestions?
This discussion has been closed.
Replies
Allan
Allan
$(document).ready(function() {
var oTable = $('#myTable').dataTable({
"sScrollY" : "400px",
"bPaginate" : false,
"aaSorting": [],
"bJQueryUI": true,
"bScrollCollapse": true,
"bAutoWidth": true
});
$(window).bind('resize', function () {
oTable.fnAdjustColumnSizing();
} );
});