Search code examples
jasper-reports

Jasper Report - Include Blank Page after the details section


How can I enter a blank page after the ending of details section in a jasper report by using iReport 1.3.3


Solution

  • In the palette of iReport there are an Element Break :

    bread page

    You can drag and drop this to make a blank page.

    Or you can add this to your file :

    <break>
        <reportElement x="0" y="6" 
                       width="100" height="1" 
                       uuid="5c729e99-77f6-4f3d-8c7c-15453db7526f"/>
    </break>
    

    Or this :

    <break>
    <reportElement x="0" y="1"
                   width="842" height="0" key="element-1"/>
    </break>