Server-side processing (5,000,000 rows)

DataTables' server-side processing mode is a feature that naturally fits with Scroller. Server-side processing can be used to show large data sets, with the server being used to do the data processing, and Scroller optimising the display of the data in a scrolling viewport.

When using server-side processing, Scroller will wait a small amount of time to allow the scrolling to finish before requesting more data from the server (200mS by default). This prevents you from DoSing your own server!

This example shows Scroller using server-side processing mode and 5 million rows. Important This particular example uses ajax as a function to fake the data to show Scroller's ability to show large data sets. It does not have a real database behind it! You would normally not use ajax as a function to generate data, but rather as a url for where to fetch the real data!

ID First name Last name ZIP / Post code Country
  • Javascript
  • HTML
  • CSS
  • Ajax
  • Server-side script
  • Comments

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

$('#example').DataTable({ ajax: function (data, callback, settings) { var out = []; for (var i = data.start, ien = data.start + data.length; i < ien; i++) { out.push([i + '-1', i + '-2', i + '-3', i + '-4', i + '-5']); } setTimeout(function () { callback({ draw: data.draw, data: out, recordsTotal: 5000000, recordsFiltered: 5000000 }); }, 150); }, processing: true, ordering: false, scroller: true, scrollY: 200, searching: false, serverSide: true });
new DataTable('#example', { ajax: function (data, callback, settings) { let out = []; for (var i = data.start, ien = data.start + data.length; i < ien; i++) { out.push([i + '-1', i + '-2', i + '-3', i + '-4', i + '-5']); } setTimeout(() => { callback({ draw: data.draw, data: out, recordsTotal: 5000000, recordsFiltered: 5000000 }); }, 150); }, processing: true, ordering: false, scroller: true, scrollY: 200, searching: false, serverSide: true });

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

    The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:

    This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The additional CSS used is shown below:

    The following CSS library files are loaded for use in this example to provide the styling of the table:

      This table loads data by Ajax. The latest data that has been loaded is shown below. This data will update automatically as any additional data is loaded.

      The script used to perform the server-side processing for this table is shown below. Please note that this is just an example script using PHP. Server-side processing scripts can be written in any language, using the protocol described in the DataTables documentation.

      Other examples