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

Question

Question

Topaz T-LBK462 HSB Not Releasing in Forms 10.2

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

Answer

SELECTED ANSWER
replied on October 20, 2017

We were able to get this to work now.  Thanks

0 0

Replies

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

Sign in to reply to this post.