I’ve placed the anchor tags for my document in a 3 column table. The first cell has anchor tag \c1\ for recording a Text Tab value for signer’s company, the second cell has anchor tag \n1\ for recording the signer’s full name, and the last cell has anchor tag \s1\ for recording the signature.
The problem is that the displayed value for the anchor tags are not wrapping within the cells of the table. So if the company names or signer’s names are long, they run into the values of the other cells causing the text to overlap.
Is there a way to force the injected text to wrap in the cell and respect the layout where the anchor tag is defined?
I’ve tried to specify the “width” property to 100 and “anchorUnits” property to “pixels” (also tried “inches”), but it doesn’t seem to affect anything:
"recipients": {
…
"signers": [
{
...
“Name”: “Sample Name”
"tabs": {
"signHereTabs": [
{
"anchorString": "\s1\",
"anchorUnits": "pixels",
"width": 100,
"required": "true",
}
"fullNameTabs": [
{
"anchorString": "\n1\",
"anchorUnits": "pixels",
"width": 100,
"required": "true",
}
],
"textTabs": [
{
"anchorString": "\c1\",
"anchorUnits": "pixels",
"width": 100,
"required": "true",
"value": "Here is a very long company name LLC",
}
]
}
}