Html Tabs can have the same ID to Replicate data
According to https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/responsive/setting-tabs/.
We can create signable documents from an HTML definition.
The expected behavior is to be able to include tablLabels more than one time within the same document, replicating data for supplied tabLabels.
Example:
<div>{{"tabLabel": "StakeholderName"}}</div>
<div>{{"tabLabel": "StakeholderName"}}</div>
Let's think of StakeholderName tab will be replaced by "Elon Musk" value, so the expected result should be:
<div>Elon Musk</div>
<div>Elon Mush</div>
2
votes
