Versions Compared

Key

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

...

It is also possible to add your own print button to any workflow step by adding a message control with the following html. Note that a custom print button will print the current step step and not the entire workflow. Also the current step will print even if the step's print property is unchecked.

Info

When adding HTML to a message control you must add it in Source View. Click the Source button, add the html, then save the text. Refer to the Message Control topic for details on Source View.

Code Block
languagehtml/xml
<a title="Print this form" onclick="_frevvo.api.forms.printer.printFlowStep(this);" href="#" class="f-tb-print"><span id="f-form-tb-print-span">Print Form</span><>Print PDF</a>

The onclick call to _frevvo.api.printFlowStep for the onlclick handler (this), has been deprecated.See printing forms for more details on how to add a print message control.. Please replace this as shown in the sample above with the onclick call to _frevvo.api.forms.printer.printFlowStep(this);