-2

I need to set initial value for the custom TEXT tab. so that user ll have an option he can keep the text and reenter it. i have seen the property "Initial value" for the TEXT tab in DOCUSIGN application. But through the API, I could not find that property.

I am using Documents, Envelope option with SOAP API.

Kindly suggest how do i achieve my requirement.

Thanks.

Vishwa
  • 1
  • 1
  • Possible duplicate of [Docusign: Dynamically Populate Fields In Document](http://stackoverflow.com/questions/18925536/docusign-dynamically-populate-fields-in-document) – Ergin Oct 31 '16 at 20:08
  • Have you searched the `DocuSignApi` on Stack Overflow for this info? This has been answered many times, like here: http://stackoverflow.com/questions/18925536/docusign-dynamically-populate-fields-in-document – Ergin Oct 31 '16 at 20:09
  • Yes Ergin, I have checked Docusign API and stack overflow but its not resolved the issue. The link which you have shared, that shows only setting the value. when i did follow that, it is not allowing to user to edit the Text tab value. But for my requirement I need to set the value to TEXT tab at the same time we should also give an option to user to edit the text tab. – Vishwa Oct 31 '16 at 22:50
  • I hope my question is clear now. – Vishwa Oct 31 '16 at 22:55
  • Use the `locked` property which can be found in the [API Documentation](https://docs.docusign.com/esign/). I just posted an answer. – Ergin Nov 02 '16 at 00:07

1 Answers1

0

To populate initial tab value and also make it editable:

"textTabs": [
    {
        "tabLabel": "name",
        "value": "foo",
        "locked": "false"
    },
    {
        "tabLabel": "email",
        "value": "bar",
        "locked": "false"
    }
]
Ergin
  • 9,254
  • 1
  • 19
  • 28
  • we are using SOAP API, I do not find the property "locked'. But I found and I checked "CustomTabLocked" but it is not worked. CustomTabLocked = "X" & CustomTabLocked = ''; both not worked – Vishwa Nov 02 '16 at 17:57
  • You should specify all this info when you first post your question. If you're using SOAP API try adding this property also `CustomTabRequiredSpecified` = `true` – Ergin Nov 02 '16 at 20:53
  • I do not find mentioned property , even i could not find the same in api documentation. https://www.docusign.com/p/APIGuide/APIGuide.htm#Sending Group/Tab.htm?Highlight=radio button – Vishwa Nov 03 '16 at 06:26
  • Ergin,Did u get a chance to check it..? – Vishwa Nov 08 '16 at 07:25