I am implementing row grouping in React with ag-grid. I have the enterprise edition and I am using server-side as the rowModelType. I have enabled pagination (let's say, to 5 rows per page). When I first see the table I have the first parent row groups on the screen:
When I expand the first parent group (Austria), which has 70 children, I would like the children not to be cut off from the same page, but instead to show the children and the other 4 countries in the same page. I am getting this instead:
Here is the example in Plunker:
{https://plnkr.co/edit/2bn1OsgrpIKGcLgDJHIt?p=preview}
Is there a way to keep page size in 5 rows, but that only the parent groups are counted as items and not the children? The final aim is to see the children in the same page as the parent group, in case there is an alternative solution without specifically grouping them in the columns defs.
Thanks in advance!

