如何使用 Lotus 脚本将值从父级传递到响应
如何使用 LotusScript 或公式将值从父级传递给响应?
how to pass value from parent to response using lotusscript or formula?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 LotusScript 或公式将值从父级传递给响应?
how to pass value from parent to response using lotusscript or formula?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您不一定需要编写代码。只要您选中了“继承字段值”表单属性,如果您突出显示或打开“父”文档,然后选择创建对其的响应,该响应将继承指定字段中父级的字段值。例如,如果您的父文档有一个
Subject
字段,并且您在响应表单中创建一个名为OriginalSubject
的撰写时计算字段,其公式为 < code>Subject,您的响应字段将在创建时从父文档继承其值。这当然是一个用户界面功能。如果您在后端创建响应文档,则需要将父级的字段值显式写入响应。
You don't need to write code, necessarily. So long as you have the "Inherit field values" form attribute checked, if you highlight or open the "parent" document, and then elect to create a response to it, that response will inherit the parent's field values, in specified fields. For example, if your parent doc has a
Subject
field, and you create a computed-when-composed field in your response form called, say,OriginalSubject
, with the formulaSubject
, your response field will inherit its value from the parent doc on creation.This is of course a user interface function. If you're creating response documents in the back-end, then you need to explicitly write field values from the parent to the response.