Signing ceremony does not apply settings
Monday, March 13, 2017 at 06:58amAs specified on this page:
http://docs.esignlive.com/content/c_integrator_s_guide/sdk/k_customization/customizing_the_signing_cermony.htm?Highlight=customization#Customiz
I have applied settings in the code:
------------------------- code snippet-------------------
.WithSettings(DocumentPackageSettingsBuilder.NewDocumentPackageSettings()
.WithoutWatermark()
.WithCeremonyLayoutSettings(CeremonyLayoutSettingsBuilder.NewCeremonyLayoutSettings()
.WithoutProgressBar()
.WithoutSessionBar()
.WithoutGlobalNavigation()
.WithoutNavigator()
.WithoutGlobalSaveAsLayoutButton()
.WithoutBreadCrumbs()))
------------------------------------------------------------
but signing ceremony still displays sections despite that i specifically said not to.
Is this a bug on your side or I did it wrong?
Reply to: Signing ceremony does not apply settings
Monday, March 13, 2017 at 09:22amReply to: Signing ceremony does not apply settings
Monday, March 13, 2017 at 09:24amReply to: Signing ceremony does not apply settings
Monday, March 13, 2017 at 09:26amReply to: Signing ceremony does not apply settings
Monday, March 13, 2017 at 09:30amReply to: Signing ceremony does not apply settings
Monday, March 13, 2017 at 09:33amReply to: Signing ceremony does not apply settings
Monday, March 13, 2017 at 10:32amDocumentPackage pkg = PackageBuilder.NewPackageNamed("Testing Signing Ceremony") .WithSigner(SignerBuilder.NewSignerWithEmail("[email protected]") .WithFirstName("John") .WithLastName("Smith") .WithCustomId("Signer1")) .WithSettings(DocumentPackageSettingsBuilder.NewDocumentPackageSettings() .WithoutWatermark() .WithCeremonyLayoutSettings(CeremonyLayoutSettingsBuilder.NewCeremonyLayoutSettings() .WithoutProgressBar() .WithoutSessionBar() .WithoutGlobalNavigation() .WithoutNavigator() .WithoutGlobalSaveAsLayoutButton() .WithoutBreadCrumbs())) .WithDocument(DocumentBuilder.NewDocumentNamed("test doc") .FromFile(@"C:/Users/hhaidary/Desktop/PDFs/doc1.pdf") .WithSignature(SignatureBuilder.SignatureFor("[email protected]") .AtPosition(100, 100) .OnPage(0))) .Build(); PackageId packageId = eslClient.CreateAndSendPackage(package);And I was able to remove the session bar, progress bar, etc... Did you try sending the package to a dummy email you have access and see if the signing ceremony is actually being customized? I am only asking because the package id you shared is currently sitting in draft.Reply to: Signing ceremony does not apply settings
Monday, March 13, 2017 at 10:51amReply to: Signing ceremony does not apply settings
Monday, March 13, 2017 at 11:06amReply to: Signing ceremony does not apply settings
Monday, January 8, 2018 at 04:57pmReply to: Signing ceremony does not apply settings
Tuesday, January 9, 2018 at 04:15amReply to: Signing ceremony does not apply settings
Tuesday, January 9, 2018 at 09:59am