This site contains the legacy documentation for DataTables v1.9 and earlier for reference only.
DataTables 1.9 was End Of Life in 2014.
Do not use it for new work.
The current release of DataTables can always be found on
DataTables.net.
ColReorder example with scrolling
Preamble
This is a simple example to show ColReorder working with DataTables scrolling.
Live example
Examples
Initialisation code
$(document).ready( function () {
var oTable = $('#example').dataTable( {
"sDom": 'Rlfrtip',
"sScrollY": "200px",
"bPaginate": false
} );
} );