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

Question

Question

Form Footer

asked on December 30, 2019

Hello,

 

I am trying to get a footer on each page of a form that is submitted to the repository. I have added this code, but the footer appears at the end of the form and not on each page. I would also like the footer to include variables on the form. Does anybody have a solution for this. Thanks in advance! 

$(document).ready( function () {
  $('<footer style="position: fixed; bottom: 0"><p>YOUR TEXT HERE</p></footer>').insertAfter($('.cf-formwrap'));
});

 

0 0

Replies

replied on December 30, 2019

How about using a Custom HTML box at the bottom of each page?

0 0
replied on December 31, 2019

The form has a table with an undetermined number of rows so that won't work. 

0 0
replied on December 30, 2019

If you want to apply it to all the processes, you can add the option suggested at https://answers.laserfiche.com/questions/122314/Header-and-footers-with-page-count#122335

0 0
replied on December 31, 2019

I'm also looking to have a variable from the form included so I don't think that would work. Thanks though. 

0 0
replied on December 31, 2019

You could add a section with css class .Footer to each page, using Page Break feature and add the below jquery. 

$(document).ready( function () {

  $('<footer style="position: fixed;"><p>YOUR TEXT HERE</p></footer>').appendTo($('.Footer'));


});

 

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

Sign in to reply to this post.