I was able to render my .prpt (converted to HTML) report as a pdf file within the browser window but I'm looking to give the user the option to open with pdf reader and or save to desktop. I'm unsure of how to accomplish this within the html attributes tab. I have the following code within the append-body section which renders the report correctly as pdf.
Your help is appreciated.
Code:
<form style="display:inline"
id="pdfLink"
action="index.html"
method="get">
<input type="hidden"
name="reportName"
value="dashboard"/>
<input type="hidden"
name="outputFormat"
value="pdf"/>
<input type="submit"
value="View As PDF"/>
</form>