Reputation: 23
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
Reputation: 7383
Set the property textTab.Shared = true
so that all recipients can view and edit the tab value.
Documentation here
textTab.required = true
Other signers can still edit the textTab if shared=true
, but it will not be mandatory for other signers.
shared = true
requireAll = true
Upvotes: 1