cancel
Showing results for 
Search instead for 
Did you mean: 

Last page not to print

Former Member
0 Kudos

Hello,

I have a form that has 3 pages. Last of them I don't want to print. Is there any way to switch it off?

Thanks!

Accepted Solutions (1)

Accepted Solutions (1)

prajeshdesai
Contributor
0 Kudos

yes you can do it by hiding body page from java script or form calc.

write below code on initialize event of body page.


this.presence = "hidden";          //java script

$.presence = "hidden";             //form calc

Hope this helps.

Former Member
0 Kudos

Thanks! But it is not possible for body page. It works only for subform on body page.

prajeshdesai
Contributor
0 Kudos

Yes, your main sub form is your PAGE and when you create subform in main subform that is your window.

So if you hide main sub form that will hide your page.

Hope this helps.

Former Member
0 Kudos

Thanks! It works well!

Answers (0)