Confluence - Use "/spaces/flyingpdf/pdfpageexport.action?pageId=" for a button

685 Views Asked by At

I am trying to implement a button or an image that would work the same as the default Export to PDF option. This button in turn would be included in a div element. I've found that the code used by Confluence to generate PDF is /spaces/flyingpdf/pdfpageexport.action?pageId=####### where ### indicates the page number.

My current code looks as follows:

<style>
div.fixed {
  position: fixed !important;
  top: 45px !important;
  right: 0px !important;
  width: 300px;
  text-align:right;
 }
</style>

<div class="fixed">
<input type="button" onclick="location.href=document.referrer; return false;" value="Previous Page" />
<input type="button" onclick="/spaces/flyingpdf/pdfpageexport.action?pageId=#######;" value="Make PDF" />
 </div>

The code works with the first button only. The second button does show but doesn't work even when the pageId is hardcoded. I understand there is a $content.getIdAsString() code to get the pageId but so far I haven't had any luck with that either.

Here is what I am trying to accomplish:

  • have the Export to PDF option implemented on a button and obey all underlying PDF Stylesheet customizations. I've managed to resolve this. See comment below.
  • IF possible, replace the button with an image e.g. instead of Make PDF button, have a PDF icon. In short, more visual. Resolved!
  • have the button/image be part of a div element as seen in the code. Resolved!

Looking forward to your awesome suggestions.

1

There are 1 best solutions below

0
On BEST ANSWER

Modified the code as follows to resolve all the issues outlined in the original question:

<style>
div.fixed {
  position: fixed !important;
  top: 45px !important;
  right: 0px !important;
  width: 300px;
  text-align:right;
 }
</style>

<div class="fixed">
<input type="button" onclick="location.href=document.referrer; return false;" value="Previous Page" />
<input type="image" src="image location" onclick="location.href='/spaces/flyingpdf/pdfpageexport.action?pageId=171706153';">
</div>