ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Friday, October 12, 2018 at 03:54amHello,
While using Mobile Capture way of Signing approach, We get the signature placeholder right at the top of the document. It’s not in the place where we had placed it in the document. The Signature is however affixed correctly for the Non-Mobile Capture approach, that is when I sign using mouse on my PC.
Sample code,
PackageBuilder.newPackageNamed(packageName)
.withSettings(
DocumentPackageSettingsBuilder.newDocumentPackageSettings().withoutDecline().withoutOptOut()
.withoutDocumentToolbarDownloadButton().withoutLanguageDropDown()
.withCeremonyLayoutSettings(CeremonyLayoutSettingsBuilder.newCeremonyLayoutSettings()
.withoutGlobalNavigation().withoutBreadCrumbs().withoutSessionBar()
.withoutGlobalConfirmButton().withoutGlobalDownloadButton().withTitle()))
.withSigner(SignerBuilder.newSignerWithEmail("[email protected]").withFirstName("John")
.withLastName("Smith"))
.withDocument(DocumentBuilder.newDocumentWithName(formName).fromFile(documentPath).enableExtraction()
.withSignature(SignatureBuilder.mobileCaptureFor("[email protected]"))).build();
I haven't specified any coordinates for the Signature field in Non Mobile Capture approach instead we have created a PDF field (Signer.Capture1) using Adobe Acrobat. This worked fine when we did the signature via an Iframe. I.e. Signing was done from my laptop. We used the same code for Mobile Capture approach as well assuming that the signature will get affixed in the same way as it did when we signed from our Laptop. But instead the signature field was right at the top of the document.
Package Id is VjzHCVO7ImhqjkoGN5DnZ0kvc_w=
Thanks,
Sharan
Reply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Friday, October 12, 2018 at 06:11amReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Friday, October 12, 2018 at 04:25amReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Sunday, October 14, 2018 at 10:01pmReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Monday, October 15, 2018 at 08:25amReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Monday, October 15, 2018 at 09:03amReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Monday, October 15, 2018 at 06:40pmReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Monday, October 15, 2018 at 07:03pmReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Monday, October 15, 2018 at 07:28pmReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Tuesday, October 16, 2018 at 04:54pm.withSignature(SignatureBuilder.mobileCaptureFor(“[email protected]â€))).build();
3.what's the workaround #1. since it's caused by Document Extraction doesn't support mobile_capture type, you can change to use Text Tag Feature where mobile_capture type is supported. #2. as we discussed from the beginning, you can use Position Extraction Feature to locate your mobile_capture. But the problem behind this is: if you only have one type of signature for your signer, other fields binded to this signer can't be created by Document Extraction. Because as you noticed, Document Extraction syntax like [Signer1.Fullname1.textfield1] always needed to be bound to a signature(Fullname1 in this case) which can be recognized by Document Extraction. So if you have Fullname/initial type of signature for your signer, it won't bother you, and if it doesn't, you can try #3 workaround. #3. firstly, you build your package fully with document extraction, but you put everywhere you want it a mobile_capture type as a common capture type. then, you loop through all signatures and update the type to mobile_capture type. You can find the complete code, the pdf I used and the screenshot of the result from attachment. 4.Enhancement in support mobile_capture type in document extraction Even though you can use workarounds mentioned above to achieve your goal, at the same time, you can still fill in an Enhancement Request at our support team ([email protected]) to ask for an upgrade feature of Document Extraction. Hope this could help! DuoReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Tuesday, October 16, 2018 at 07:01pmReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Tuesday, October 16, 2018 at 07:11pmReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Wednesday, October 17, 2018 at 04:09amReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Wednesday, October 17, 2018 at 03:35pmHi Sharan, After some research, I found that in previous post, there was someone suggested "have signer signature appear in multiple signature fields". So I will let you know if this feature was put to the roadmap! Duo
Reply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Wednesday, October 17, 2018 at 06:01pmReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Friday, October 19, 2018 at 02:36amReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Friday, October 19, 2018 at 06:51amReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Wednesday, September 18, 2019 at 11:54amReply to: ESignature Field Goes to the Top of the Document in Mobile Capture Approch
Wednesday, September 18, 2019 at 12:17pm