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?
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?
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();}); });
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();});
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.
Thanks Blake!
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?
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();}); });
You are the best!!!
Has anybody had issues with this code where the modal doesn't open?