Usually when using a Table component I have too many records to show them all at once.
It would be really useful if the Table component already have some the pagination built-in to handle that kind of stuff.
I was thinking in something like:
<TablePagination
recordsCount={100}
onNextPage={() => someAction()}
onPrevPage={() => someOtherAction()}
/>

Maybe just a Paginator Component independent from Table
We also need a way for the next and previous icons to render with a native link. On benchmark I could find:
I have found another implementation with devextreme-reactive.
I thought the stepper was the pagination component? If there were to be a pagination component separate from stepper could there be events given to the component to fire the reaction? For instance hitting the bottom of the page, or scrolling left/right?
the devextreme component looks great, but it has a non-trivial licensing structure that makes it a challenge. i think it would be great to have a basic pagination component embedded in material-ui itself.
I am also looking for the pagination feature of material-ui table.
Almost done! :tada: #8254
Most helpful comment
Maybe just a
Paginator Componentindependent fromTable