changing text on paging
changing text on paging
Hi, I have this table :
$("#myTable").dataTable({
"bPaginate": true,
"bLengthChange": true,
"bFilter": false,
"bSort": false,
"bInfo": false,
"bAutoWidth": false ,
"sPaginationType": "full_numbers"});
as there any way to change the text on the bottom of the table , like first , next etc . ?
thanks
$("#myTable").dataTable({
"bPaginate": true,
"bLengthChange": true,
"bFilter": false,
"bSort": false,
"bInfo": false,
"bAutoWidth": false ,
"sPaginationType": "full_numbers"});
as there any way to change the text on the bottom of the table , like first , next etc . ?
thanks
This discussion has been closed.
Replies
I believe the thing you are looking for is the oLanguage.oPaginate settings which can be setup like so:
[code]
$(document).ready(function() {
$('#example').dataTable( {
"oLanguage": {
"oPaginate": {
"sFirst": "First page", // This is the link to the first page
"sPrevious": "Previous page", // This is the link to the previous page
"sNext": "Next page", // This is the link to the next page
"sLast": "Last page" // This is the link to the last page
}
}
} );
} );
[/code]
for further details take a look here: http://datatables.net/usage/i18n
Regards,
Izzy
not sure I know what you mean by dome image???
can you give an example of the text you want to change.
or take a look to see if what u are looking for is here: http://datatables.net/usage/i18n
Regards
Izzy