Opt out option is missing on esign ceremony
Tuesday, September 27, 2016 at 10:18amWe are trying to integrate our application to esign live and noticed that opt-out option is not displaying on the esign ceremony. Below is the code, I am using to configure the package.
DocumentPackage documentPackage = PackageBuilder.newPackageNamed("esign-poc-rehab" + Instant.now())
.withSettings(DocumentPackageSettingsBuilder.newDocumentPackageSettings()
.withoutLanguageDropDown()
.withDialogOnComplete().hideOwnerInPersonDropDown()
.withoutDocumentToolbarDownloadButton()
.withCeremonyLayoutSettings(CeremonyLayoutSettingsBuilder.newCeremonyLayoutSettings()
.withoutTitle()
.withoutGlobalConfirmButton()
.withoutGlobalSaveAsLayoutButton()
.withoutGlobalDownloadButton()
.withoutProgressBar()
.withoutGlobalNavigation()
.withoutBreadCrumbs()
.withoutSessionBar()))
.withSigner(SignerBuilder.newSignerWithEmail("[email protected]")
.withCustomId(CUSTOM_ID).withFirstName("Ram").withLastName("Immidisetti"))
.withDocument(newDocumentWithName("Consent")
.atIndex(0)
.fromFile("C:\\Temp\\esign-consent.pdf"))
.withDocument(DocumentBuilder.newDocumentWithName("Form")
.atIndex(1)
.fromStream(fs, DocumentType.PDF)
.enableExtraction()
.withInjectedField(FieldBuilder.textField().withName("BorrowerSSN").withValue("111-11-1234"))
.withSignature(signatureFor("[email protected]").onPage(1).withName("Signature1"))
).build();
Reply to: Opt out option is missing on esign ceremony
Wednesday, September 28, 2016 at 06:21amReply to: Opt out option is missing on esign ceremony
Tuesday, September 27, 2016 at 11:17amReply to: Opt out option is missing on esign ceremony
Wednesday, September 28, 2016 at 05:10amReply to: Opt out option is missing on esign ceremony
Wednesday, September 28, 2016 at 06:37amReply to: Opt out option is missing on esign ceremony
Wednesday, September 28, 2016 at 06:41amReply to: Opt out option is missing on esign ceremony
Wednesday, September 28, 2016 at 06:58amReply to: Opt out option is missing on esign ceremony
Wednesday, September 28, 2016 at 07:00am