KeyTable fully supports DataTables server-side processing mode which can be used to display a DataTable that contains thousands or millions of records.
The interaction options of KeyTable operate in exactly the same way for server-side processing, as shown in this example (try using the arrow keys to move focus from one page to another for example).
First name | Last name | Position | Office | Start date | Salary |
---|---|---|---|---|---|
First name | Last name | Position | Office | Start date | Salary |
The Javascript shown below is used to initialise the table shown in this example:
1 2 3 4 5 6 7 | $(document).ready( function () { $( '#example' ).DataTable( { serverSide: true , ajax: "../../../../examples/server_side/scripts/server_processing.php" , keys: true } ); } ); |
In addition to the above code, the following Javascript library files are loaded for use in this example: