You are viewing limited content. For full access, please sign in.

Question

Question

Hide Page Name of pagination when saving Form

asked on January 14, 2019

Hi Guys

 

I have a really simple question regarding the Page name.

 

I would like to have the page breaks in my saved PDF but not the Page Names as displayed in the Form. 


Could someone please guide me? I reckon it to be a small javascript but I have no idea how to do it.

 

Thanks

Regards

0 0

Replies

replied on August 5, 2019

How did you resolve this? I have the same issue: "I would like to have the page breaks in my saved PDF but not the Page Names as displayed in the Form. "

1 0
replied on January 14, 2019 Show version history

This page talks about having a custom html button that prints when clicked. In the javaScript, before it prints some code runs to show the names of the sections. The same way you are talking about above in your post.

 

Custom HTML:

<input id="printer" value="Print this page" type="button">

 

javaScript:

$('#printer').click(function() {
  $('.sections, .Submit').show();//or whatever code you need to show the section labels
  window.print();
});

I am not positive on exactly what code you need to show a hidden section header, but this code should work for running whatever you need to do before it actually prints.

Hope this helps :)

 

Chris

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.