-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using pagination without a table #8520
Comments
@leMaik I have been having a look at how react-toolbox is going to handle deep nesting of the components. This is something we could explore but I believe we could implement something simpler. |
@oliviertassinari As long as the pagination component still looks as in the specs when used in a table, I'm finde with that. 👍 Sounds like one would just need to wrap Edit: Oh nice, |
🎆 🍾 🎉 |
Here is how to use the <TablePagination component="div" … |
Edit: After further investigation, I discovered that in the current source the From TablePagination.js in 5.83
Unfortunately this is no longer possible due to the component now being omitted from the base props:
Trying to find another way. I need to be able to place the pagination controls in the table header ( but above the header columns ) |
Right now the pagination works well for paginating tables. However, I have a use case where I want to paginate an unordered list. Right now I can override the root tr component to be a div for example. However, I would like to be able to turn the underlying td into something else as well. Overall I think it would be good if I could use the pagination outside of a table.
The text was updated successfully, but these errors were encountered: