I disabled pagination but still showing 1 to 10 of 30 results how can disable?
I disabled pagination but still showing 1 to 10 of 30 results how can disable?
ismael1999
Posts: 6Questions: 2Answers: 0
Link to test case:
Debugger code (debug.datatables.net):
Error messages shown:
Description of problem:
This question has an accepted answers - jump to answer
Answers
Set the
info
option to false or use thedom
option.Kevin
Sorry misread your question. We will need more information to help debug why
1 to 10 of 30
is showing with paging disabled.At a minimum please post your Datatables initialization code. Better is a link to your page or a test case replicating the issue.
https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case
Kevin
she disabled buttons pagination but number showing from number to ... still work
$(function(e) {
//file export datatable
var table = $('#example').DataTable({
lengthChange: false,
buttons: [ 'copy', 'excel', 'pdf', 'colvis' ],
responsive: false,
bPaginate:false,
language: {
searchPlaceholder: 'Search...',
sSearch: '',
lengthMenu: 'MENU ',
}
});
it's working but thear are another question when export pdf dont support rtl
See this example from this thread.
Kevin