Reputation: 1
I would like to set a tag (date/time) to only display if the user actually signs the document. When defining a Signature tab (signHereTabs) as the conditionalParentLabel, I get the following error: CONDITIONALTAB_HAS_INVALID_PARENT A conditional tab references an invalid parent. Parent label must match another tab. Only one parent allowed. Signature tabs may not be parent tabs. But if I set the the signature tab as "optional" it does work as intended - it only shows the field after the user signs. Is there a way to achieve this on a "required" signature tab?
Following is the "tabs" json section. tabLabel of the signature is "signerOtAuthsig". Only when that is signed, I want the tabLabel "datetime_signed_auth" to show.
"tabs": {
"dateSignedTabs": [
{
"anchorString": "Auth_Date_Time",
"anchorXOffset": "-2",
"anchorYOffset": "-4",
"ConditionalParentLabel": "signerOtAuthsig",
"ConditionalParentValue": "On",
"font": "Tahoma",
"fontSize": "Size10",
"bold": "true",
"name": "Date",
"recipientId": "1",
"tabLabel": "datetime_signed_auth"
}
],
"fullNameTabs": [
{
"anchorString": "Ot_Auth_Name",
"anchorXOffset": "-2",
"anchorYOffset": "-4",
"font": "Tahoma",
"fontSize": "Size10",
"bold": "true",
"name": "Full Name Electronically",
"recipientId": "1",
"tabLabel": "Full Name Electronically"
}
],
"signHereTabs": [
{
"anchorString": "Auth_Signature",
"optional": "false",
"recipientId": "1",
"scaleValue": 1,
"tabLabel": "signerOtAuthsig"
}
]
}
Upvotes: 0
Views: 696
Reputation: 14050
You can add the same recipient twice. They would have to "sign" twice, but the second time would only have the date tab and they would just have to open it and click "Complete". This approach is one of two ways I can think of to not show the date before they sign. The other one is to use a text tab and they fill the date. That latter approach mimic more of the old way we signed on paper.
Upvotes: 0