How to add pageination Text #17
-
is posible change pagination text e.g. item 1-15 from 500 |
Beta Was this translation helpful? Give feedback.
Answered by
icflorescu
Sep 7, 2022
Replies: 2 comments 4 replies
-
Not at the moment, but obviously we should be able to do so. I'm thinking about adding an optional property called <DataTable
paginationText={({ from, to, total }) => `Item ${from}-${to} of ${total}`}
// ...
/> What do you think? |
Beta Was this translation helpful? Give feedback.
4 replies
-
Starting with |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
icflorescu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Starting with
v.1.1.2
, pagination text is customizable. See icflorescu.github.io/mantine-datatable/examples/pagination.