Javascript - Control Whether Page Prints?
Is it possible to control whether or not an entire page prints using a radio button?
For example: If option A is selected, Page 8 does not print. If options B or C are selected, Page 8 will print.
Is it possible to control whether or not an entire page prints using a radio button?
For example: If option A is selected, Page 8 does not print. If options B or C are selected, Page 8 will print.
Pages don't have that property, fields do.
But yes, you can specify which pages to print if you use a script.
Here's an example of a script that will print (or more precisely, open the Print dialog with those pages pre-selected) pages 1-4, 6 and 8-10:
var pp = this.getPrintParams();
pp.printRange = [[0,3], [5,5], [7,9]];
this.print(pp);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.