Classes (0) | Namespaces (0) |
Properties (0) | Static properties (4) |
Methods (0) | Static methods (0) |
Events (0) |
Properties (0) | Static properties (4) |
Methods (0) | Static methods (0) |
Events (0) |
Pagination string used by DataTables for the two built-in pagination control types ("two_button" and "full_numbers")
Text to use when using the 'full_numbers' type of pagination for the button to take the user to the first page.
Text to use when using the 'full_numbers' type of pagination for the button to take the user to the last page.
Text to use for the 'next' pagination button (to take the user to the next page).
Text to use for the 'previous' pagination button (to take the user to
the previous page).
Text to use when using the 'full_numbers' type of pagination for the button to take the user to the first page.
$(document).ready( function() { $('#example').dataTable( { "oLanguage": { "oPaginate": { "sFirst": "First page" } } } ); } );
Text to use when using the 'full_numbers' type of pagination for the button to take the user to the last page.
$(document).ready( function() { $('#example').dataTable( { "oLanguage": { "oPaginate": { "sLast": "Last page" } } } ); } );
Text to use for the 'next' pagination button (to take the user to the next page).
$(document).ready( function() { $('#example').dataTable( { "oLanguage": { "oPaginate": { "sNext": "Next page" } } } ); } );
Text to use for the 'previous' pagination button (to take the user to
the previous page).
$(document).ready( function() { $('#example').dataTable( { "oLanguage": { "oPaginate": { "sPrevious": "Previous page" } } } ); } );