jQuery Datatables Header Misaligned With Vertical Scrolling

前端 未结 20 2516
北海茫月
北海茫月 2020-12-15 05:05

I\'ve posted this in the datatables.net forums, but after a week, still no response. Hopefully I can find help here...

I\'m using datatables version 1.8.1 and am ha

20条回答
  •  伪装坚强ぢ
    2020-12-15 05:19

    this might help you (not sure but i guess that its worth trying)

    add this code to the page

    if ( $.browser.webkit ) {
       setTimeout( function () {
           oTable.fnAdjustColumnSizing();
       }, 10 );
    }
    

    taken from here width columns problem in Chrome & Safari

    Also, i guess it worth trying to define the columns in the constructor only instead of defining them in the (leave tag empty)

提交回复
热议问题