I have a form which displays tabular data. The data is hierarchically structured into categories, subcategories, and items. It is rendered using a nested subform structure like this:
Category1Table
Category1Row
Category1Header
Category2Table
Category2Row
Category2Header
Category3Table
...
ItemTable
ItemRow
(There are actually four levels of categories which I skipped here for the sake of clarity.)
Each category subform renders a header line and its contained subcategories which also render a subheader line and so on:
Header 1
Header 2
Header 3
Header 4
Items
As there are four category levels I need to allow page breaks within the content of the category and subcategory subforms.
Thus, a page break would often also occur right in the middle between header lines:
Header 1
Header 2
------------------------ (next page) ----------
Header 3
Header 4
Items
or even worse:
Header 1
Header 2
Header 3
Header 4
------------------------ (next page) ----------
Items
On the Pagination tab in the Object palette there are two options called Keep With Previous and Keep With Next but if I activate Keep with Next for each of the Category#Header subforms to keep headers together, the order is mixed up in a way I don't understand. Probably the renderer somehow tries to keep things on one page which simply don't fit on one page resulting into smaller subforms getting pushed up.
I've been looking into conditional page breaks but those seem fit to insert page breaks not to prevent them. On the other hand I don't see how I could "calculate" when to manually insert a page break without unnecessarily wasting page space.
I think it's a tough call but maybe someone has found him-/herself in a similar situation and managed to find a solution.
EDIT
I could not find a solution for this problem. On this page I found some hints on how the renderer solves conflicting layout instructions (see paragraph "Warnings").
So I ended up changing the structure of the data and with that the structure of the layout. Now the headers are stored within the first item position following the headers. This way I was able to put all headers and the item information into one subform and disallowed page breaks within the subform.