是否有类似 FacesMessage 的 FacesConfirm 类
有没有类似FacesMessage
的FacesConfirm
?我需要传递确认对话框而不是消息。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。不过,您可以有条件地渲染
。
或者您可以使用使用类似机制的第 3 方 JSF 组件库,例如 PrimeFaces'
。No. You could however render a
<script>
conditionally.Or you could use a 3rd party JSF component library which uses similar mechanism, such as PrimeFaces'
<p:confirmDialog>
.