The pagination algorithm generates a new table for each page the data runs on. This allows you to toggle the visibility using CSS. I’d simply add the groupName to the first cell of all rows and add the following CSS to the context_print_styles.css stylesheet.
The first rule hides the content for all first cells, where the second rule makes the content of the first cell on the first row visible again.
I have figue it out with Post Pagination Script by keep seraching children with get(0) function.
However let me if you have any other better idea, that will be perfect
thanks
No need for a Post Pagination script, this can be achieved using a standard User Script.
First add a class to the table cell holding the GroupName, for example ‘groupName’.
Create a User Script and use the class as the selector (.groupName)
At the bottom of the Script Editor dialog you’ll find the Options section. Open this section and select the “Each matched element”-option. This creates an iteration over the matched elements and exposes the ‘this’ object.
Enter the script below. It appends the text ’ (continued)’ for all items except for the first entry (index = 0).