I'm using DynamicJasper to export my reports to .xls files. It works fine, but there's something that's bothering me.
Although the setIgnorePagination is set to true, at the end of what would be the first page there is a blank row that is merged with the start of the second page.
it doesn't affect the values of cells or the use of functions on the columns, but it is unsetling.
I'm using DynamicJasper to export my reports to .xls files. It works fine, but there's something that's bothering me. Although the
setIgnorePagination
is set to true, at the end of what would be the first page there is a blank row that is merged with the start of the second page.it doesn't affect the values of cells or the use of functions on the columns, but it is unsetling.
Bellow is the report generator and filler calls:
`jr = DynamicJasperHelper.generateJasperReport(pais != null ? buildReport(pais) : buildReport(), getLayoutManager(), params);
And here is my reportBuilder code:
`DynamicReportBuilder drb = new DynamicReportBuilder(); Style columDetail = new Style(); columDetail.setBorder(Border.THIN()); Style detailStyle = new Style(); detailStyle.setBorder(Border.THIN());