print each row in a separate page

Hi,

I want to create a report which has each row in a separate page. I try to put a page break at bottom in detail element. It works but it also print a blank page at the end.

Does anyone know a solution for that?

Thanks.

ntlong's picture
156
Joined: Jul 5 2011 - 6:25pm
Last seen: 12 years 2 months ago

5 Answers:

 Hi,

in iReports for section Detail1 use Miximize Band Height.

 



Post Edited by mspacer at 07/22/2011 12:55
mspacer's picture
25
Joined: May 12 2011 - 5:23am
Last seen: 12 years 4 months ago

Hi,

You also could group data instead of using page breaks.

To have single records per page use the dummy group below:

Hope this helps,

sanda

Code:
<group name="OneRecordGroup" isStartNewPage="true">
  <groupExpression><![CDATA[Boolean.valueOf($V{OneRecordGroup_COUNT}.intValue() > 1)]]></groupExpression>
</group>
</td></tr></tbody></table>
shertage's picture
22320
Joined: Sep 26 2006 - 8:06pm
Last seen: 2 months 3 weeks ago
thanks. I will try it.
ntlong's picture
156
Joined: Jul 5 2011 - 6:25pm
Last seen: 12 years 2 months ago

I need to print each row in seperate page but i am using jasper studio how can i do that 

gauravkhandelwal1992's picture
Joined: Apr 24 2014 - 4:54am
Last seen: 8 years 9 months ago

Thank you

ethelsita's picture
Joined: Apr 25 2018 - 7:31am
Last seen: 4 years 10 months ago
Feedback
randomness