Dev01
Dev01

Reputation: 25

How to place a checkpoint in DocuSign Document

Say I have two documents in an envelope, after clicking this start button, I want to navigate to the start of the next document or navigate to x page of x document? Is there any way to do that programatically?

Upvotes: 0

Views: 62

Answers (2)

Dev01
Dev01

Reputation: 25

To navigate to a certain page that I wanted, I created a required and read-only text field (tab) during makeEnvelope process like so:

let textHere1 = docusign.Text.constructFromObject({
   documentId: "4",
   pageNumber: "1",
   tabLabel: "#bookmark1",
   value: " ",
   yPosition: "380",
});

Upvotes: 1

Inbar Gazit
Inbar Gazit

Reputation: 14050

The DocuSign Signing UI will help the signer navigate the document by taking them to the next signing element (also called tab/tag) based on the logic that was designed in the envelope. That's the behavior you see after clicking "Start."

There's no way that I know of to just place a tab that does nothing except take the user to that position in the document. Typically the tab requires the user to click to have their signature or initial or fill a text box or checkbox etc. and that Start button text changes to tell the user what to do in that field.

Upvotes: 0

Related Questions