WithoutGlobalConfirmButton ceremony setting not observed.
Friday, July 20, 2018 at 09:03amHi,
We're on onsite customer running ESL 6.2. We recently decided to remove the "Confirm" button at the top of the screen during the singing ceremony. We added code to include .WithoutGlobalConfirmButton() per below but we still see the "Confirm" button during signing. I've pulled the JSON for packages created before and after the change via the API (attached). The JSON shows the change, but again no change in behavior.
Any Ideas?
PackageBuilder PkgBuilder = PackageBuilder.NewPackageNamed(Model.GUID + "-" + Model.Id)
.ExpiresOn(DateTime.Now.AddHours(PackageExpirationTimeHours))
.WithSettings(DocumentPackageSettingsBuilder.NewDocumentPackageSettings()
.WithoutLanguageDropDown()
.WithHandOverLinkTooltip("Go Back")
.WithDialogOnComplete()
.WithCeremonyLayoutSettings(CeremonyLayoutSettingsBuilder.NewCeremonyLayoutSettings()
.WithoutGlobalNavigation()
.WithoutBreadCrumbs()
.WithoutGlobalDownloadButton()
.WithoutGlobalSaveAsLayoutButton()
.WithoutGlobalConfirmButton()
.WithoutGlobalSaveAsLayoutButton()));
Reply to: WithoutGlobalConfirmButton ceremony setting not observed.
Tuesday, July 24, 2018 at 08:02am.WithoutGlobalConfirmButton()
function. If this changed behavior is what you want, you can update your on-premises version to get this feature. Besides that, you may have noticed that, during regular signing documents, confirm button will be disabled until all signatures are accepted. Hope this could help you! DuoReply to: WithoutGlobalConfirmButton ceremony setting not observed.
Tuesday, July 24, 2018 at 11:50amReply to: WithoutGlobalConfirmButton ceremony setting not observed.
Tuesday, July 24, 2018 at 12:39pm