Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

80
Views
Is it possible to add show all pages in the rows per page?

I have these rows per page options 10,15,100 is it possible to add an option to view all the rows? And if so, how? I can't seem to find it in the documentation:

Codesandbox: https://codesandbox.io/s/muidatatables-custom-toolbar-forked-xfhb5h?file=/index.js:1372-1394

  const options = {
    search: searchBtn,
    download: downloadBtn,
    print: printBtn,
    viewColumns: viewColumnBtn,
    filter: filterBtn,
    filterType: "dropdown",
    responsive: "standard",
    tableBodyHeight,
    tableBodyMaxHeight,
    onTableChange: (action, state) => {
      console.log(action);
      console.dir(state);
    }
  };
about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

To achive that, remove tableBodyHeight,tableBodyMaxHeight, from options and add following props to your options object:

    responsive: "scrollFullHeight",
    pagination: false,
    rowsPerPageOptions: [],

So, your options object should look like this :

const options = {
    search: searchBtn,
    download: downloadBtn,
    print: printBtn,
    viewColumns: viewColumnBtn,
    filter: filterBtn,
    filterType: "dropdown",
    responsive: "scrollFullHeight",
    pagination: false,
    rowsPerPageOptions: [],

    onTableChange: (action, state) => {
      console.log(action);
      console.dir(state);
    }
  };

Here is a working example.

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!