我使用时的问题:
<p:growl id="growl" autoUpdate="true" />
或
<p:messages id="messages" autoUpdate="true" />
当我有错误消息时,一旦我使用清除过滤器或重新过滤数据表的数据表,如:
<p:commandButton value="do somthing and re-filter" oncomplete="PF('testTable').filter()"/>
<p:commandButton value="do somthing and clear filter" oncomplete="PF('testTable').clearFilters()"/>
<p:dataTable id="table" widgetVar="testTable" value="#{myMB.data}">
</p:dataTable>
消息被隐藏了,因为autoUpdate是真的,所以ajax调用过滤器被触发并返回没有消息所以这个调用清除消息,如果我做autoUpdate="false"
但我需要它,这将是一个解决方案所以我不想把它设置为假。
答案 0 :(得分:9)
解决方案是将ajax过滤器事件添加到p:datatable
:
<p:dataTable id="table" widgetVar="testTable" value="#{myMB.data}">
<p:ajax event="filter" ignoreAutoUpdate="true" />
{...}
</p:dataTable>