如何从包含页面(可视页面)触发按钮单击事件
在我的 Visualforce 主页面中,我包含了一个标题页。在标题页中有几个超链接。现在,当我从一个超链接导航到另一个超链接时,我想访问主页的自定义按钮单击事件。
你能提供 apex 中的代码片段吗?
In my main Visualforce page I have included one header page. In the header page there several hyperlinks. Now, where I navigate from one hyperlink to other hyperlink I want to access main page's Custom button click event.
Can you provide a code snippet in apex?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否理解这个问题,但您可能想看看是否需要传递参数:在 VisualForce 中:
I'm not sure I understand the question, but you might want to look at and if you need to pass a parameter: in VisualForce:
<apex:commandLink action="{!buttonClickEventAction">
<apex:param name="q" value="{!contact.name}"/>
</apex:commandLink>