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

Question

Question

Forms signature deny typable

asked on December 12, 2016

We have a form that we would liked signed, but we do not want to allow a type-able signature. 

Is there a way to force the system to not allow typing, and only allow the signed part?

0 0

Answer

SELECTED ANSWER
replied on December 12, 2016

Just replace what you have in the JavaSript area with the following:

$(document).ready(function () {
 //Hide Type Signature tab
  $("#sigNav a:eq(0)").hide();
  $("#form-signature-dlg").on("shown.bs.modal", function(){$("#sigNav a:eq(1)").click();});
  
 });

 

2 0

Replies

replied on December 12, 2016

You can do this with JavaScript:

//Hide Type Signature tab
  $("#sigNav a:eq(0)").hide();
  $("#form-signature-dlg").on("shown.bs.modal", function(){$("#sigNav a:eq(1)").click();});

 

2 0
replied on December 13, 2016

I wanted to try this one out too...

Is it supposed to prevent the type-able signature?  I tried it in my system, and it opened the "Draw" option by default, but then still let me select and complete the signature via the "Type" option.

0 0
replied on March 27, 2020

Thanks Blake!

0 0
replied on December 12, 2016

OK, i know i am not good with Java (just yet). can you look at my screenshot and tell me what i need to change?

2016-12-12_17-03-31.png
0 0
SELECTED ANSWER
replied on December 12, 2016

Just replace what you have in the JavaSript area with the following:

$(document).ready(function () {
 //Hide Type Signature tab
  $("#sigNav a:eq(0)").hide();
  $("#form-signature-dlg").on("shown.bs.modal", function(){$("#sigNav a:eq(1)").click();});
  
 });

 

2 0
replied on December 13, 2016

You are the best!!!

1 0
replied on October 1, 2019

Has anybody had issues with this code where the modal doesn't open?

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

Sign in to reply to this post.