This example shows how DataTables with scrolling can be used together with Bootstrap tabs (or indeed any
other method whereby the table is in a hidden, display:none
, element when it is initialised).
The reason this requires special consideration is that when the DataTable is initialised in a hidden element the browser doesn't have any measurements with which to give the DataTable, and this will result in the misalignment of columns when scrolling is enabled.
This misalignment can be corrected by the columns.adjust()
method when the table is made visible (i.e. it has dimensions).
This example shows how the Bootstrap shown.bs.tab
event can be used to trigger this method call. The visible tables on the page are selected using
the static $.fn.dataTable.tables()
method and running the columns.adjust()
method
on them.
The Javascript shown below is used to initialise the table shown in this example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | $(document).ready( function () { $( 'a[data-toggle="tab"]' ).on( 'shown.bs.tab' , function (e) { $.fn.dataTable.tables( {visible: true , api: true } ).columns.adjust(); } ); $( 'table.table' ).DataTable( { ajax: '../ajax/data/arrays.txt' , scrollY: 200, scrollCollapse: true , paging: false } ); // Apply a search to the second table for the demo $( '#myTable2' ).DataTable().search( 'New York' ).draw(); } ); |
In addition to the above code, the following Javascript library files are loaded for use in this example: