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

Question

Question

Pass signature in invoke business process

asked on October 22

Is it possibe to pass signature in invoke business process?

0 0

Replies

replied on October 22

At least in self-hosted you can.  At least copying from one Forms instance to another.  I’ve used it a few times.

0 0
replied on October 22

Thanks.

0 0
replied on October 22

Can I not add a Signature field in field rules? Like show a warning message when Signature is not populated?

0 0
replied on October 23

Unfortunately, no.  You can't set a field rule based on the signature field.  You could use JS.  I'm guessing you want a popup on the load incase WF doesn't populate the signature?

0 0
replied on October 23

yes, thanks Angela.

0 0
replied on October 23

I should have asked before, are you using Modern or Classic? 

In Classic I used this and it worked.  Just change the Field ID to your signature Field ID.

$(document).ready(function () {
    // Check if q32 signature is signed
    if ($('#q32 .lf-signature img').length === 0) {  //Update Field ID
        alert('Signature field is empty. Please sign before proceeding.');
    }
});

 

0 0
replied on October 24

Thanks Angela. I am using Classic Forms.

 

Priya

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

Sign in to reply to this post.