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 Palette Controls topic for details on Source View.

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

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

See printing forms for more details on how to add a print message control.