marioosh
marioosh

Reputation: 28596

How to force page break beetwen records in Jasper Reports?

I need to force page break after each record from datasource. I tried <break type="Page">, but doesn't work. How to do that ?

Upvotes: 2

Views: 11285

Answers (1)

marioosh
marioosh

Reputation: 28596

I did it using <group>:

<group name="record" isStartNewPage="true">
    <groupExpression><![CDATA[$V{REPORT_COUNT}]]></groupExpression>
</group>

Upvotes: 6

Related Questions