FixedColumn messes line alignment

FixedColumn messes line alignment

pristospristos Posts: 2Questions: 0Answers: 0
edited January 2013 in DataTables 1.9
Hello!

I'm new to DataTables and I'm trying to create a table with 2 fixed columns and fixed headers.
I'm using DataTables version 1.9.4.

When I use the fixedcoluns, the line aligment gets all messed up in IE. Chrome and Firefox are doing just fine.
Anyone has seen it before?

That's my js:

[code]

jQuery(document).ready( function () {
var oTable = jQuery("#testmatrix").dataTable({
"sScrollX": "100%",
"sScrollXInner": "440%",
"sScrollY": "550",
"sDom": "t",
"bScrollCollapse": true,
"bPaginate": false,
"bSort": false,
"bAutoWidth": false
});

var oFC = new FixedColumns( oTable, {
"iLeftColumns": 2,
"iLeftWidth": 200,
"sHeightMatch": "semiauto"

} );

} );



[/code]

Thanks in advance!

Replies

  • pristospristos Posts: 2Questions: 0Answers: 0
    edited January 2013
    Hello!

    I'm sorry to insist, but I didn't find anything about it...
    Does anyone have a tip for me? Please?

    Thanks again!
This discussion has been closed.