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

Question

Question

Don't Want Upload Info on File Saved to Laserfiche

asked on March 8, 2017

I have a simple form that requires the user to upload a file. After running through the approval process, I save the form as a TIF and the uploaded file as a PDF and link them through the relationships. The problem is that I don't want to see the upload information on the final output of the form (see yellow highlight):

I created an OUTPUT form and removed it, but then it didn't save my PDF attachment. Any other ideas?

0 0

Replies

replied on March 8, 2017

You can use JavaScript to hide a field on the stored version of the form.

$(document).ready(function() {
    if ($("#Field1").is("div")) {
        $("#q2").hide();
    }
});

In this case, #Field1 refers to a single line field, and #q2 refers to the container for the file upload field you want to hide.

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

Sign in to reply to this post.