FixedHeader columns not lining up

FixedHeader columns not lining up

illectronicillectronic Posts: 20Questions: 0Answers: 0
edited October 2013 in FixedHeader
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.

Replies

  • illectronicillectronic Posts: 20Questions: 0Answers: 0
    This seemed to have gotten 99% better after downloading the lastest version of datatables of github!
  • allanallan Posts: 61,722Questions: 1Answers: 10,108 Site admin
    Please link to a test case showing the issue.

    Good to hear it is getting better :-)

    Allan
  • illectronicillectronic Posts: 20Questions: 0Answers: 0
    It's actually working great with 1.10. No issue. This can be closed
  • illectronicillectronic Posts: 20Questions: 0Answers: 0
    I am still having issues starting at the 4th column. This column has a set width with overflow:hiden since it is large. Here is a screenshot:http://i.imgur.com/e1L41RU.png

    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]
This discussion has been closed.