FixedColumns + Complex Header + Serverside Processing = Mismatching Row Height

FixedColumns + Complex Header + Serverside Processing = Mismatching Row Height

JanuszJasinskiJanuszJasinski Posts: 36Questions: 0Answers: 0
edited June 2013 in Plug-ins
Similar to http://datatables.net/forums/discussion/16151/fixedcolumns-complex-header-serverside-processing-unwanted-vertical-scrollbar except that I have now changed the table structure to have a single row along the top

However in IE, the fixed columns have rows that seem to start a pixel lower down than the scrollabe columns/rows and are actually taller which causes the rows to be mis-matched

[code]
$(document).ready(function () {
var oTable = $('#example').dataTable({
"bProcessing": true,
"sHeightMatch": "auto",
"bScrollCollapse": true,
"bSort": false,
"bServerSide": true,
"sAjaxSource": "data.asp",
"sServerMethod": "POST",
"sScrollX": "100%",
"fnInitComplete": function () {
new FixedColumns(oTable, {
"iLeftColumns": 6,
"sHeightMatch": "auto"
});
}
});
});
[/code]

Any help?
This discussion has been closed.