自定义任务按钮“记录电话呼叫”在 salesforce.com 中
我想创建一个自定义任务按钮,该按钮将创建一个新的活动或任务和默认主题,以及单击时将自定义字段“Activity.Type__c”设置为“电话”。
我已经定义了按钮,但需要一些关于内容源和实际代码应该是什么的指示。
非常感谢示例代码和/或教程链接!
I'd like to create a custom task button that would create a new activity or task and default subject and a custom field "Activity.Type__c" to "Phone Call" when clicked.
I got as far as defining the button, but need some pointers on what the content source and the actual code should be.
Sample code and/or links to tutorials are greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要设置按钮的 URL,使其具有 GET 参数,其 Id 与页面上的字段匹配,然后设置它们的值。因此,查看 HTML 中自定义字段的 id,它将是一个 18 个字符的字符串(例如 00ND0000003IyoE)。然后在 URL 中使用
?00ND0000003IyoE=Phone%20Call
进行设置。注意:我使用 %20 作为空格。You need to set the URL for the button to have GET parameters with Ids matching the fields on the page, and then their values. So, look at the id of the custom field in the HTML, it'll be an 18 character string (e.g. 00ND0000003IyoE). Then set that in the URL with
?00ND0000003IyoE=Phone%20Call
. Note: I'm using %20 for the space.