views:

473

answers:

3

I'm creating HTML (popup window), EXCEL and PDF report and would like to show my reports on one page. This report is not going to be used for printing, so there is no need separate my report into pages. Plus later users would like to use Buildin Excel sorting.

Is there an option to ignore pages?

A: 

I don't know if there an option to ignore pages, but you can change the page height to a very big number (10000)?

In the XML, set the pageHeight attribute to "10000", or similar.

MatthieuF
+3  A: 

Under the Report Properties in the "More . . ." section. There is a Ignore Pagination option. Check this box and it should work

DrewM
A: 

As an alternative to checking "Ignore pagination", you should be able to get a similar effect by setting the page bands' height to zero. At least for Excel and HTML reports, not sure about PDF.

This is helpful for large reports when you want to use Jasper's Virtualizer feature. The reason is that the virtualizer stores entire pages on disk, and if you enable ignore pagination, you will not get the benefit from the virtualizer and risk running out of memory.

waxwing