I'm using Jasper reports. I have a page header, detail & summary band. The page header is repeated on all pages but sometimes when only the summary part moves into last page as the detail gets over in the page before that. The header is not printed on the last page i.e summary page. Does somebody have any idea as to why the page header is not printed on the summary page. Is there some other way to print header on summary page.
标签:
jasper-reports
相关问题
- Jasper: error opening input stream from url
- JasperReports Server parameter dependency
- is it possible print element only when its detail
- JasperReports CompileReport
- Print an arraylist content with JasperReports
相关文章
- How to set up jasper reports in spring with subrep
- Modularization of Jasper reports: Pass data source
- How to use jasperreports subreports with grails ja
- Current URL /web/guest/HTML generates exception: n
- SAX2 driver class not found
- Passing array data from PHP to JasperReports (with
- How to force image url in jasper report export to
- SubReport not shown
In previous versions, before 3.7.6, you can put your content on band
because the header content gonna be repeated.
Other solution is:
In my case, I was using ireport 3.0. I tested the two situations and worked perfectly.
CooL!!!!! :)
By default, the page header does not apply to the summary band.
Since Jasper 3.6.1, there is a report property that can be used to force the summary band also to have page header, called 'Summary with Page header and footer'. You should check it in iReport, or set
isSummaryWithPageHeaderAndFooter="true"
in the jasperReport tag.