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?

ismael1999ismael1999 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

  • kthorngrenkthorngren Posts: 20,292Questions: 26Answers: 4,768
    Answer ✓

    Set the info option to false or use the dom option.

    Kevin

  • kthorngrenkthorngren Posts: 20,292Questions: 26Answers: 4,768

    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

  • ismael1999ismael1999 Posts: 6Questions: 2Answers: 0

    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 ',
        }
      });

  • ismael1999ismael1999 Posts: 6Questions: 2Answers: 0

    it's working but thear are another question when export pdf dont support rtl

  • kthorngrenkthorngren Posts: 20,292Questions: 26Answers: 4,768

    See this example from this thread.

    Kevin

Sign In or Register to comment.