Home > Net >  React Material Table, First and Last Page Button
React Material Table, First and Last Page Button

Time:08-09

In a MUI React Table, how do I add First and Last page button? This only has previous and next page button. I want a First and Last Page double arrow icon, or something out of the box.

enter image description here

CodePudding user response:

In mui v5 <TablePagination/> has props called showFirstButton and showLastButton. See more https://mui.com/material-ui/api/table-pagination/

  • Related