I have a problem with Datatables that does not properly use x-axis scrolling.
Previously, I had to deal with the IE9 "ghost cell" problem, which I was able to fix. However, now I am encountering a problem when my overflow-x is displayed, rather than hiding it and making a scrollable window.
My initialization of datatables:
var oTable = $('#tableBP').dataTable({ "bJQueryUI": true, "sScrollX": "100%", "sScrollXInner": "200%", "sScrollY": 300, "bScrollCollapse": false, "bFilter": true, "bSort": false, "bInfo": false, "bPaginate": false }); //This is a Datatables plugin. The issue occurs whether I comment this part or not. new FixedColumns(oTable, { "iLeftWidth": 225 });
This is what I came across: 
However, it works in IE9 compatibility mode. Unfortunately, other parts of the page do not allow me to work, this is lower version compatibility, but this clearly marks it as an IE9 problem. No problem in Chrome, Safari, Opera, Firefox.
I am not going to publish the table here because of its sheer size (2000+ td fields in some cases). This is an absolutely correct HTML table with a tag / body, and all spaces between tags are removed (this is what is fixed by my previous ghost cell issue).
Does anyone have experience with Datatables and know the root cause of this problem?
PS: this is an MVC2 application (C # .Net), but this problem is not related to the application that created this web page.
Update
I forgot to mention the following part:
The table displayed correctly; but due to a problem with IE9 cell in large tables, I had to clear all the spaces between the table / thead / tbody / tr / td tags. I solved this by forcing the replacement of regular expressions in my application HTML output:
If I comment out the RegEx replacement, data overflow will work fine, but I ran into a ghost cell issue that causes misalignment and all-round ugliness. When uncommenting, all cells are fully aligned, but the overflow stops working.
As I said, the problem only applies to IE9. All other browsers (including IE9 in compatibility mode) perfectly display the table in states with comments / without commenting.