简体   繁体   中英

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?

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",
});

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM