f:setPropertyActionListener 当 simpleModal 工作时不工作
我有下一个代码:
<h:commandLink value="#{bean.lastName}" onclick="$('#popDiv').modal(); return false;">
<f:setPropertyActionListener target="#{personController.person}" value="#{bean}" />
</h:commandLink>
问题是,为了使模式面板(SimpleModal)不立即打开和关闭,我必须在发生“onclick”时使用“return false”。但“return false”使 f:setPropertyActionListener 不起作用。 可以做些什么来让它们同时工作呢?
提前致谢。
I have the next code:
<h:commandLink value="#{bean.lastName}" onclick="$('#popDiv').modal(); return false;">
<f:setPropertyActionListener target="#{personController.person}" value="#{bean}" />
</h:commandLink>
The problem is that to make the modal panel (of SimpleModal) to not open and close immediately i have to use "return false" when "onclick" occurs. But "return false" makes f:setPropertyActionListener not work.
What can be done to make them both work?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你能做这样的事情吗:
Can you do something like:
你需要与
you need to work with