...
You can also style your form's print view via a custom theme. This enables you to have one look & feel in use mode and a different look & feel in print mode. See the themes chapter for details and examples.
In Live Form versions previous to V5, &format=pdf appended to the URL from clicking on the Print Icon will give you a PDF of the form instance. This can be done manually by first clicking the Print Icon which will open the HTML print view in your browser and then editing that URL by appending a &format=pdf and clicking the browser's go button again. Or you could add a clickable link into your form. To do thisA print icon is automatically added to the top of all forms when you select the print property in the form designer. You can also add a print button anywhere in the form by following these steps:
- Add a message control to your form
- Add the following HTML to your message control
- Escape the '&' in the URL before the format=pdf with & followed by amp;
Code Block |
---|
<center> <a href="javascript:void(0);" onClick="window.open(document.location.toString().split('?')[0] + '? print=true&format=pdf')">Print PDF</a> </center> |
...