是否有类似 FacesMessage 的 FacesConfirm 类

发布于 2024-11-07 04:54:36 字数 302 浏览 0 评论 0原文

有没有类似FacesMessageFacesConfirm?我需要传递确认对话框而不是消息。

FacesMessage msg = new FacesMessage("The version " + version + " is already exists.", " The import data will replace the existing data.");
FacesContext.getCurrentInstance().addMessage(null, msg);

Is there any FacesConfirm like FacesMessage? I need to pass a confirmation dialog instead of message.

FacesMessage msg = new FacesMessage("The version " + version + " is already exists.", " The import data will replace the existing data.");
FacesContext.getCurrentInstance().addMessage(null, msg);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

为你鎻心 2024-11-14 04:54:36

不。不过,您可以有条件地渲染

<h:panelGroup rendered="#{not empty bean.confirmMessage}">
    <script>confirm('#{bean.confirmMessage}');</script>
</h:panelGroup>

或者您可以使用使用类似机制的第 3 方 JSF 组件库,例如 PrimeFaces'

No. You could however render a <script> conditionally.

<h:panelGroup rendered="#{not empty bean.confirmMessage}">
    <script>confirm('#{bean.confirmMessage}');</script>
</h:panelGroup>

Or you could use a 3rd party JSF component library which uses similar mechanism, such as PrimeFaces' <p:confirmDialog>.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文