how to repeat group for each page
i have the below xml
<Country>Japan</Country>
<CarType>Sedan</CarType>
<CarModel>Camry</CarModel>
<CarModel>Civic</CarModel>
...
<Country>Germany</Country>
<CarType>Sedan</CarType>
<CarModel>3 Series</CarModel>
<CarModel>4 Series</CarModel>
...
I have a <for-each-group> on Country and a <for-each> on CarType. Everything is fine. The problem is when the list of <CarModel> is long so it will repeat on the next page. Right now, at the top of the new page, <CarType> repeats but not <Country>
I want <Country> to repeat on the new page also. How do I do that?
Thanks