7

Is there any way to disable/remove pagination from react material-table. Im using the material-table plugin for react and finding it very difficult to remove the pagination. Any help is much appreciated

Leeyung
  • 111
  • 1
  • 2
  • 6

1 Answers1

26

you can add paging: false to your options:

<MaterialTable
        //other stuff...     
        options={{
          paging: false
        }}
      />

For a list with all props check here: https://material-table.com/#/docs/all-props

rebecca
  • 943
  • 9
  • 12