I need to export a report to a plain html file without the viewport of jasper reports.
If I do &output=pdf
in url I get a pdf file, &output=xls
, a xls file, but &output=html
will show html inside a viewport of jasper reports. A want a html file too.
How can i achieve that? I am using the http api.
From documentation
The following example executes the same report as shown in the previous section, but also passes 4012 as an input control parameter and exports to PDF instead of HTML:
http://<host>:<port>/<context>/flow.html?_flowId=viewReportFlow&reportUnit=
/supermart/Details/CustomerDashboard&customerID=4012&output=pdf
How to export JasperReport to HTML?
Related question, however not helpful to me.