Level 102
What version of datatables are you running? This was added in 1.10 I believe
I want to change Pagination Text Previous to Prev
How is this possible?
<table class=" table table-bordered table-striped table-hover datatable datatable-Permission">
--------
</table>
jQuery Code:
$('.datatable-Permission:not(.ajaxTable)').DataTable({
buttons: dtButtons,
language: {
paginate: {
previous: 'Prev',
next: 'Next'
},
aria: {
paginate: {
previous: 'Previous',
next: 'Next'
}
}
}
})
Not working!!!!
Please or to participate in this conversation.