|
The summary step supports a print button. To print the summary step, first drag a summary into your flow from the palette and then setup summary fields to indicate which form fields to display in the printable summary.
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.
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. |
<a onclick="_frevvo.api.forms.printer.printFlowStep(this);"href="#" >Print Flow</a> |
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);