简体   繁体   中英

jasper report exclude summary page from PAGE NUMBER

I have a jasper report with number of groups and a summary page.I need to exclude that summary page from page number.For example if I have 10 pages (including summary) then I need show the page number on my footer as 1 of 9 , 2 of 9 etc.But currently it shows 1 of 10 , 2 of 10

Thanks

Let me start by saying that this is a somewhat ugly workaround and works only if your summary consists of fixed amount of pages.

When you design your report, and put in $V{PAGE_NUMBER} that shows you the amount of pages - you can actually call some Java logic before the output is shown. Specifically you can just subtract 1 and get the result you need.

you can just subtract 1 and get the result you need. For Example: [CDATA[new java.lang.Integer($V{PAGE_NUMBER}.intValue()-1)]]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM