Reputation: 57
I am using the grails jasper plugin to generate reports in my grails application. It works fine but it offers the pdf report as a download, is there a way to display the report in the browser, lets say on another tab.
this is the code to display the report.
<g:jasperReport jasper="myreport" format="PDF" name="MY Report" />
Upvotes: 0
Views: 993
Reputation: 21
You can use inline="true"
, like
< g:jasperReport jasper="myreport" inline="true" format="PDF" name="MY Report" />
Upvotes: 2