Reputation: 28596
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
Reputation: 28596
I did it using <group>
:
<group name="record" isStartNewPage="true">
<groupExpression><![CDATA[$V{REPORT_COUNT}]]></groupExpression>
</group>
Upvotes: 6