asked on September 27, 2017
We are currently using Topaz T-LBK462 HSB signature pads (Previously I was using a 460 and it was working) and have installed SigWeb and we are having an issue with it not releasing the signature pad. We use the signature pad for both web signatures and a receipt capture product. Any suggestions? This is the javascript we are currently using.
var baseUri = "http://vs-forms:47289/SigWeb/"; function initSigWeb(){ var ctx = $("#sigTabContent .signatureSettings").get(0).getContext('2d'); ResetParameters(); SigWebSetDisplayTarget(ctx); tmr = setInterval(SigWebRefresh, 50); SetDisplayXSize(438); SetDisplayYSize(150); SetJustifyMode(0); SetTabletState(1); $("#sigNav a:eq(0)").hide(); $("#form-signature-dlg").on("shown.bs.modal", function(){ $("#sigNav a:eq(1)").click(); }); $("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(){ if (!window.isPrintMode){ $.getScript("http://vs-forms:47289/SigWeb/SigGetScript/SigWeb.js", function(){ initSigWeb(); }); } });
0
0