Reputation: 11
hi i want to send bullet point to docusign template text field
but when i send it as a html it will print as it is, even the [\r\n][1]
is not working how i can send the formatted text so i can you the bullet points
this is the text i want to show in format
<ol><li>this is the test term </li><li>this is the test term again </li><li>this is the last term for testing purpose</li></ol>
this is the way i want to show
this is the way its being shown right now
updated
how add new line using Unicode ?
updated 18-Nov-2020
I want the answer for PHP language please , using docusign SDK
Upvotes: 1
Views: 796
Reputation: 49104
The DocuSign text fields can only handle plain text, not HTML.
But good news: that includes all Unicode characters including Unicode bullet points such as this triangular bullet point: ‣
So your application can add bullet points to DocuSign text fields.
As an alternative, your application could create a custom document for the envelope in addition to or instead of the template's document(s).
You could create the additional document using HTML or create a PDF document on the fly.
Tested! It works! To add a new line, I add new line character to the text tab's value.
If your computer language interpolates character sequences, that'd be
value = "‣ line 1\n‣ line 2"
Working Node.JS example:
...
let textTab1 = docusign.Text.constructFromObject({
anchorString: "/sig1/",
anchorXOffset: "120",
height: "30",
value: "‣ line 1\n‣ line 2",
width: "120"
});
let textTabs1 = [textTab1];
let tabs1 = docusign.Tabs.constructFromObject({
signHereTabs: signHereTabs1,
textTabs: textTabs1
});
...
Result (screenshot):
Upvotes: 1