Jack G said:
I'm new to FP forms. Is there a way to set up a "button" to allow people
to
PRINT the form either before SUBMITTING or after being sent to the
confirmation page?
The user could just click the print button on their browser. A simpler idea
is to put a reminder on the confirmation page "Press Ctrl+P to print this
page for your records". This would be neater, since printing the page
before submitting will print the form elements and not look as neat.
To put in link or button to print the page (I'm sure this is an "IE Only"
thing, so it may not work in other browsers). I think the code is as below
(other members may correct me on this)
<a href="#" onclick="print.window();">Print Page</a> OR <input type="button"
value="Print Page" name="print onclick="print.window();">
For some browsers I believe you need to enclose the above line withinin
<form> and </form> tags (Firefox for instance), and use "OnSubmit" instead
of "OnClick". In IE, the stand alone line works. Again, other members might
correct me on this code here.
You might need to experiment a bit.
Hope this helps.
Andrew