双击 OpenFaces 树/数据表
双击表行后如何从 JSF 页面导航到另一个页面。我正在寻找 o:commandButton
中的 action
等属性。
谢谢您的任何建议! 托马斯
How can I navigate from a JSF page to another after I did double click on a table row. I'm looking for an attribute such as action
in o:commandButton
.
Thank you for any advice!
Thomas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我突然想到会使用 ondblclick 参数并触发 JavaScript 函数来重定向到页面。否则,您可以使用 action="page?faces-redirect=true" 但这仅适用于单击一次。
我的 javascript 有点基础,但我相信您可以使用
window.location="http://www.yourdomain.com/"
进行重定向。
所以
Just off the top of my head I would use the ondblclick parameter and fire a javascript function to redirect to a page. Other wise you can use action="page?faces-redirect=true" but that will only work for a single click.
My javascript is a little basic but I believe you can use
window.location="http://www.yourdomain.com/"
to redirect.
so
xhtml 文件
JavaScript
xhtml file
JavaScript