如何以编程方式禁用 Docusign 中的复制数据填充?
How to disable Replicated Data Population in Docusign programmatically?
根据 Docusign
Data Population Scope is a great way to speed up the signing process by duplicating their data throughout the document automatically
我想阻止这种复制以编程方式发生。
有没有我可以传递给 Text 的论点来防止这种情况发生?可能是这样的:
Text(data_label="some_unique_label")
我试过
Text(name="some_unique_name")
这并没有阻止其他文本字段之间的数据链接。根据 Docusign 文档,我需要为每个字段设置一个唯一的数据标签。但是,我没有找到文本的 data_label
选项。
您正在查找 tabLabel
参数。
数据填充在具有相同 tabLabel
的字段之间,因此如果您使这些字段唯一,它们将不会共享数据。
根据 Docusign
Data Population Scope is a great way to speed up the signing process by duplicating their data throughout the document automatically
我想阻止这种复制以编程方式发生。 有没有我可以传递给 Text 的论点来防止这种情况发生?可能是这样的:
Text(data_label="some_unique_label")
我试过
Text(name="some_unique_name")
这并没有阻止其他文本字段之间的数据链接。根据 Docusign 文档,我需要为每个字段设置一个唯一的数据标签。但是,我没有找到文本的 data_label
选项。
您正在查找 tabLabel
参数。
数据填充在具有相同 tabLabel
的字段之间,因此如果您使这些字段唯一,它们将不会共享数据。