Pagination of subrows in a grouped model #5137
Replies: 3 comments 1 reply
-
|
Did you ever figure this out? I've come across this limitation and it's a little annoying. |
Beta Was this translation helpful? Give feedback.
-
|
+1 I would also like this. We need pagination in subrows/panel. We have a workaround by building a table in the detail panel ourselves and adding pagination but its not ideal. For example, aligning columns with the parent is a bit messy. |
Beta Was this translation helpful? Give feedback.
-
|
You can't get that exact behavior from the built-in pagination row model today. The pagination stage slices the current top-level row model. Group rows are still rows, and their expanded So the practical options are: // group headers count toward pageSize; expanded children stay with parent
paginateExpandedRows: falseor build the rendered list yourself from |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I'm using the grouping api to simply categorize rows by only one column - like the first name letters as sub headers in an address book.
What I would like to achieve is to use the built in pagination api, to only show 10 rows per page, regardless whether they are rows or subrows. But currently, pagination only works for the depth-0 rows. It would render hundreds of rows on the same page, if they belong to the same group.
So how can I use the pagination api together with the group api?
EDIT: Basically I would like something like
paginateExpandedRowsbut for subrowsBeta Was this translation helpful? Give feedback.
All reactions