用于打开的命令按钮来自不同的 xhtml 文件
在具有 richfaces 和 primefaces 的 JSF 2.0 应用程序中,我希望在单击打开时有一个命令按钮,但该对话框位于另一个 xhtml 文件中。我怎样才能在 primefaces 或 richfaces 中实现这一目标。
我已经尝试过
<a4j:commandButton value="Search" id="buttonQuickSearch" action="#{customerDetailsBean.quickSearch}" oncomplete="quickview.dlg.show();"/>
In a JSF 2.0 application with richfaces and primefaces, I would like a command button when clicked to open a however the dialog is in another xhtml file. How can I achieve this in either primefaces or richfaces.
I have tried
<a4j:commandButton value="Search" id="buttonQuickSearch" action="#{customerDetailsBean.quickSearch}" oncomplete="quickview.dlg.show();"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
将对话框代码包含在母版页中。Use
<ui:include>
to include the dialog code in the master page.