Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Section


Column

Workflows do not currently support a print feature. You may notice a print icon in the Workflow Designer toolbar. Designers can click the icon to see a preview of the PDF that will be generated by for frevvo for your workflow.

You can print information from your workflow by one of the following methods:

  • Add a Summary step to your workflow
  • Add a Print button


Column
width240px

On this Page:

Table of Contents


...

The onclick call to _frevvo.api.printFlowStep(this), has been deprecated. Please replace this as shown in the sample above with the onclick call to _frevvo.api.forms.printer.printFlowStep(this);

You can also add the print icon to this custom print button. Use this html in your Message Control.

Code Block
<a class="fa fa-print" aria-hidden="true"></a>
<a onclick="_frevvo.api.forms.printer.printFlowStep(this);" href="#" >Print Step</a>

Image Added

The filename of the PDF is specified in Print Name property the Forms editing mode of your workflow, on the left-side properties panel. 

...