Skip to main content
Nintex Community Menu Bar

I have a form that generates a QR Code in a PrintArea Panel that I am able to Print to PDF using the OOB functionality. Is there a way to have a Print Button that prints the PrintArea Panel and gives you the option to choose a printer?

Hi ​@jamvan,

If you use a classic form you can use a javascript button to open the print dialog box.
 

 


Hi ​@jamvan 
Has Simon’s response answered your question? 


For the most part it has. I am still having a small issue where the print screen (printArea) adds a blank white page to the bottom.

 

Here is my custom CSS:

@media print {

  body, html {

    margin: 0 !important;

    padding: 0 !important;

    height: auto !important;

    overflow: visible !important;

  }

 

  .printArea {

    position: absolute !important;

    top: 0 !important;

    left: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    width: 100% !important;

    visibility: visible !important;

    page-break-after: avoid !important;

    page-break-before: avoid !important;

    page-break-inside: avoid !important;

  }

 

  .nf-form-container {

    height: auto !important;

    overflow: visible !important;

  }

 

  .nf-filler-control, .nf-form-input {

    margin: 0 !important;

    padding: 0 !important;

  }

 

  body * {

    visibility: hidden !important;

  }

 

  .printArea, .printArea * {

    visibility: visible !important;

  }
 


Reply