How we can show the current page number in jasper sub report ? i have done for only first page with variable like this $V{PAGE_NUMBER} and "("+$V{PAGE_COUNT}+")"
but how we can show in all sub reports ?
how to show page number in jasper report
13.4k views Asked by Bhupinder kumar At
2
you have to use page footer band for that,
set the
$V{PAGE_NUMBER}
's print when expression to "REPORT" when you have to display total pages and,$V{PAGE_NUMBER}
's print when expression to "NOW" when you have to display current page number.TRY This