Hello all,
I am trying to get Topaz signature pads to work with the signature field within Forms. I am using the following code and it allows me to sign with the signature pad in the signature field in Forms.
However, during the workflow it reaches an error when it tries to convert the form to a tiff image or .pdf.
Without the code in place, the form goes through the workflow properly.
The model Topaz signature pad I am using is T-S460-HSB-R.
Thank you in advance
var baseUri = "http://localhost:47289/SigWeb/"; function initSigWeb(){ var ctx = $("#sigTabContent .signatureSettings").getContext('2d'); ResetParameters(); SigWebSetDisplayTarget(ctx); tmr = setInterval(SigWebRefresh, 50); SetDisplayXSize(438); SetDisplayYSize(150); SetJustifyMode(0); SetTabletState(1); $("#form-signature-dlg").on("shown.bs.modal", function(){ $("#sigNav a:eq(1)").click(); KeyPadClearHotSpotList(); ClearSigWindow(1); ClearTablet(); SetLCDCaptureMode(2); $("button.signSignatureBtn").removeAttr("disabled"); }); $("span.clearSignature").on("click", function(){ SetLCDCaptureMode(1); KeyPadClearHotSpotList(); ClearSigWindow(1); ClearTablet(); $("button.signSignatureBtn").removeAttr("disabled"); setTimeout(function(){SetLCDCaptureMode(2);}, 2000); }); $("#form-signature-dlg").on("hidden.bs.modal", function(){ SetLCDCaptureMode(1); KeyPadClearHotSpotList(); ClearSigWindow(1); ClearTablet(); }); } $(document).ready(function(){ $.getScript("http://localhost:47289/SigWeb/SigGetScript/SigWeb.js", initSigWeb); });