作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用属性 autoUpdate 测试 p:growl 和 p:messages,但它不起作用,尽管这是一个非常简单的代码。
我的页面(primes.xhtml):
<h:head/>
<h:body>
<h:form>
<p:messages autoUpdate="true"/>
<p:commandButton action="#{dateBean.testErr}"/>
</h:form>
</h:body>
@ManagedBean
public class DateBean {
public String testErr(){
FacesContext context = FacesContext.getCurrentInstance();
context.addMessage(null, new FacesMessage("test error"));
return null;
}
}
最佳答案
最新: Primefaces 7 不支持此 p:grow 和 p:messages autoUpdate="true"属性。只是它不起作用,您会收到上面的服务器警告:“警告:有一些未处理的 FacesMessages,...”
使用这个而不是 autoUpdate="true"属性:
<p:messages>
<p:autoUpdate />
</p:messages>
<p:growl id="growl" showDetail="true" sticky="true">
<p:autoUpdate />
</p:growl>
关于jsf-2 - 自动更新不适用于 p :growl and p:messages in primefaces,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18664034/
我是一名优秀的程序员,十分优秀!