Scroller example jQuery UI

This example shows DataTables and Scroller being used with jQuery UI providing the base styling information.

The Javascript shown below is used to initialise the table shown in this example:

1
2
3
4
5
6
7
8
9
$(document).ready(function() {
    $('#example').DataTable( {
        ajax:           "../data/2500.txt",
        deferRender:    true,
        scrollY:        200,
        scrollCollapse: true,
        scroller:       true
    } );
} );

In addition to the above code, the following Javascript library files are loaded for use in this example: