FixedHeader columns not lining up
FixedHeader columns not lining up
illectronic
Posts: 20Questions: 0Answers: 0
I have tried using CSS, but it only works if I make the inner data bigger or smaller. I am having trouble adjusting the top fixed header to a fixed width in order to match the data.
This discussion has been closed.
Replies
Good to hear it is getting better :-)
Allan
Here is the main Jquery code:
[code]
$(document).ready(function() {
$('#top-table').dataTable( {
"sScrollY": 250,
"sScrollX": "100%",
"iDisplayLength": 50,
<!-- "sScrollXInner": "150%", -->
"bScrollCollapse": true,
bAutoWidth: false,
"bPaginate": false,
"aaSorting": [ [0,'desc'] ],
"bSortClasses": false,
"aoColumnDefs": [
{ "sWidth": "10%", "aTargets": [ 3 ] }
]
} );
} );
[/code]