如何在 salesforce 的相关列表中获取父 ID
如何在相关列表的自定义按钮单击时获取父 ID。
问题探索:- 当我们打开“帐户详细信息记录”页面并进入相关选项卡时,我们会看到一个联系人列表,并且联系人列表磁贴上有一个新按钮...当我们单击该新按钮时,新记录模式将打开,并带有预设置-其中填充的帐户。
所以,我必须创建一个自定义按钮来完成同样的事情。
How to get parent id on custom button click of the related list.
Question Exploration:- when we open the Account detail record page and go in the related tab we have a contact list there and a new button on the contact list tile...when we click that new button new record modal is open with a pre-populated account in it.
so, I have to create a custom button that does this same thing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您单击自定义按钮时,上下文将作为名为
inContextOfRef
的变量在 URL 中传递,并且该值是一个 Base64 编码的字符串。您可以从 URL 获取此值并在组件中对其进行解码。对于 LWC,你可以这样做:When you click your custom button, the context is passed in the URL as a variable named
inContextOfRef
and the value is a base64-encoded string. You can get this value from the URL and decode it in your component. For LWC, you could do something like this:这对我有用:
This worked for me: