FixedColumn messes line alignment
FixedColumn messes line alignment
pristos
Posts: 2Questions: 0Answers: 0
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!
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!
This discussion has been closed.
Replies
I'm sorry to insist, but I didn't find anything about it...
Does anyone have a tip for me? Please?
Thanks again!