Column Sizing

Column Sizing

guillianoguilliano Posts: 2Questions: 0Answers: 0
edited March 2013 in Bug reports
Hi

When I go to my page with my Datatable I got this rare column Sizing:
http://s2.postimg.org/kjguobco9/datatable.jpg

But when I click on some header, the column sizing is normal...

Can someone help me?

This is my code:
[code]
setTimeout( function () { oTable.fnAdjustColumnSizing(); }, 10 );
var oTable = $('#dossierOverzicht').dataTable({
"sDom": "<'row'<'span6'l><'span6'f>r>t<'row'<'span6'i><'span6'p>>",
"sScrollX": "90%",
"sScrollXInner": "140%",
"bScrollCollapse": true
});

$(window).resize(function() {
oTable.fnDraw(false)
});
$('#dossierOverzicht_nav').on('click', 'li input', function() {
fnShowHide($(this).val(), oTable);
});
[/code]

Replies

This discussion has been closed.