Goal
When an field renders over multiple pages, the second and next page may need to have another background and some other fixed fields (headers / footers)
Example
field overflow example
<pages>
<page size="210,297" name="Vervolg 1">
<fields>
<field name="Titel_1-2">...</field>
<field name="Titel_2-2">...</field>
<field name="Footer_1-2">...</field>
<field name="Footer_2-2">..</field>
<field name="Tekst_1-2">
<type>html</type>
<output>
<allowoverflow>no</allowoverflow>
<allowpageoverflow>yes</allowpageoverflow>
...
</output>
...
</field>
<field name="Tekst_2-2" isContinuation="true">
<type>html</type>
<output>
<allowoverflow>no</allowoverflow>
...
</output>
...
</field>
</fields>
</page>
<page size="210,297" name="Vervolg 1a" isContinuation="true">
<fields>
<field name="Footer_1-2">...</field>
<field name="Footer_2-2">...</field>
</fields>
</page>
</pages>
Implementation
page.isContinuation> makes a page the continuation of the previous page for field with allowpageoverflow=true
The ‘continuation page’ may have another background or other fields then the first page.
Note: The fields with allowpageoverflow=true should not be repeated on the continuation page