By default the majority of features that DataTables provides are enabled, such that a richly interactive table is presented to end users. However, you may wish to disable various features to customise DataTables to your specific application. This is possible using the following initialisation parameters.
|
bPaginate
Show details |
Enable or disable pagination. |
| Default: | true |
| Type: | boolean |
| Code example: |
$(document).ready( function () {
$('#example').dataTable( {
"bPaginate": false
} );
} );
|