Dirk Goldgar
Dirk Goldgar

Reputation: 23

Same text tab for multiple signers

Is it possible for two or more signers to share the same text tab, so that either of them can complete the tab, but if the first signer completes the tab the second signer can edit the entered value, and if the first signer didn't enter a value the second signer can? I'm trying to do this with tabs positioned by anchor text, but at signing time the second signer sees an empty text entry block positioned on top of whatever the first signer entered, rather than seeing a text block filled with the previous entry.

Ideally, I'd like to make it so this is a required tab for the envelope as a whole, but optional for any individual signer -- that is, one of the signers has to fill this in, but we don't care which.

Upvotes: 2

Views: 209

Answers (1)

Praveen Reddy
Praveen Reddy

Reputation: 7383

Set the property textTab.Shared = true so that all recipients can view and edit the tab value.

Documentation here


Making TextTab mandatory for a specific signer

textTab.required = true

Other signers can still edit the textTab if shared=true, but it will not be mandatory for other signers.


Making TextTab Mandatory for all Signers

shared = true
requireAll = true

Upvotes: 1

Related Questions