文档签名 :使用带有可选签名的条件字段

本文关键字:字段 条件 文档 | 更新日期: 2023-09-27 18:30:30

我们正在开发一个应用程序,最终用户需要做嵌入式DocuSign。文档包含一个可选的签名选项卡和一个自定义选项卡文本框。仅当最终用户使用"SignHereOptional"选项卡签名时,我们才需要使文本框可见。 为此,我们使用条件字段。

下面是我们用于应用程序的代码。但不知何故,我们无法达到预期的结果。

Tab parent = new Tab();
parent.DocumentID = "1";
parent.RecipientID = "1";
parent.PageNumber = "1";
parent.Type = TabTypeCode.SignHereOptional;
parent.CustomTabTypeSpecified = true;
parent.XPosition = "100";
parent.YPosition = "200";
parent.TabLabel = "CustomerSign";
Tab child = new Tab();
child.DocumentID = "1";
child.RecipientID = "1";
child.PageNumber = "1";
child.Type = TabTypeCode.Custom;
child.CustomTabType = CustomTabType.Text;
child.CustomTabTypeSpecified = true;
child.ConditionalParentLabel = "CustomerSign";
child.ConditionalParentValue = "Signed";
child.XPosition = "300";
child.YPosition = "400";

如果此问题有任何解决方法,请告诉我们

提前谢谢。

文档签名 :使用带有可选签名的条件字段

检查父选项卡的值的逻辑是什么样的? 对于可选的签名选项卡类型,您需要检查值"on"。

REST API Guide 对 ConditionalParentValue 有以下描述:

Optional element. For conditional fields this is the Value of the parent tab that controls this tab’s visibility.
If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use “on” as the value to show that the parent tab is active.