I have a "parent" jrxml, let's call it "class", that looks like this:
<band height="100" splitType="Prevent">
<textField isStretchWithOverflow="true">
<textField isStretchWithOverflow="true">
<subreport>
<subreportExpression>
<![CDATA["student.jasper"]]>
</subreportExpression>
has n subreports, one for each "student". The "student" subreport is just some textfields.
<band height="35">
<textField isStretchWithOverflow="true">
<textFieldExpression>
<![CDATA[$F{first_name}]]>
</textFieldExpression>
</textField>
<textField isStretchWithOverflow="true">
<textFieldExpression>
<![CDATA[$F{last_name}]]>
</textFieldExpression>
</textField>
What I would like to do is print a "This class continues in the next column/page" message at the bottom of the column if the content doesn't all fit in the one column.
Is this possible with JasperReports?