Jump to content

Signature not displayed on Details page


Recommended Posts

I have followed the Caspio instructions for setting up a digital signature pad (http://forums.caspio.com/index.php?/topic/4693-js-adding-a-digital-signature-to-a-submission-form/

 

 

I have used this code on two separate pages, one submission form, where the signature capture works. The second is on a details page where I both want to capture the signature (if previously not received) and I want to display the signature (if already signed). On this page, the capture portion works but I cannot get the display portion to work. So, if it was previously signed I am not able to see the signature.

Here is the deployed page: http://www.wgaportal.org/reviewcertifications.html?ApplicationID=226

Help would be appreciated.

Link to comment
Share on other sites

I can't see your datapage.

Here is the code I use, on a Submission Form, with the exception of additionally loading jQuery. My signature field is hidden, in one HTML block I have the signature code, and in the other I have this to display the saved signature (if present):

Saved Signature:
<div class="sigPad">
    <canvas class="pad" width="275" height="55"></canvas>
</div>
<script  type="text/javascript">
var sig = [@field:Signature!];
var api = $('.sigPad').signaturePad({displayOnly:true});
api.regenerate(sig);
</script>

 

Link to comment
Share on other sites

Thanks! That worked beautifully! I used the code from the Caspio tutorial which is: 

<div class="sigPad signed"> <div class="sigWrapper">
<canvas height="55" width="198" class="pad"></canvas></div>
</div>
<script>
var sig = eval("[@field:Signature]".replace(/"/g, '"'));
$(document).ready(function () {
$('.sigPad').signaturePad({displayOnly:true}).regenerate(sig);
});
</script>

for some reason this section of code (specifically for displaying) did not work on my details page.

Thank you for sharing your solution!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...