7

我正在使用 PrimeFaces 投票组件来刷新一些内容。

<h:form id="formBsvtt">
  <p:messages autoUpdate="true" showDetail="false" />
  <p:outputPanel id="panelOut" layout="block">
    ...
    ... content to refresh
    ...
  </p:outputPanel>
  <p:panelGrid id="panelIn" layout="block">
    ...
    ... various input components with validation
    ...
  </p:panelGrid>
  <p:poll widgetVar="poll1" autoStart="true" global="false" interval="15" 
    partialSubmit="true" process="@this" update="panelOut"
    listener="#{myBean.myListener}">
  </p:poll>
</h:form>

如您所见,我正在使用带有 autoUpdate=true 的消息。我的问题是:如果出现验证错误 FacesMessages 将显示,但不迟于 15 秒消失。

是否可以在不设置消息 autoUpdate=false 的情况下防止民意调查清除 FacesMessages?

我的 Web 应用程序比上面指定的代码片段要大得多,我的意图不是在每种可能的情况下手动更新消息!

4

2 回答 2

14

PrimeFaces 2.x/3.x

这本来是不可能的,所以需要一个技巧。在 的rendered属性中<p:messages>,检查是否<p:poll>被触发,如果是,则返回false。这样,JSF 认为在渲染期间组件树中没有可自动更新的消息组件,因此将忽略它​​。

如果<p:poll>触发,则其客户端 ID 显示为javax.faces.source请求参数。所以,这应该这样做:

<p:messages ... rendered="#{param['javax.faces.source'] ne poll.clientId}" />
...
<p:poll binding="#{poll}" ... />

(注意:不需要额外的 bean 属性)

PrimeFaces 4.x+

所有 PrimeFaces 命令组件都有一个新ignoreAutoUpdate属性,您可以将其设置false为忽略autoUpdate="true"ajax 更新中的所有组件。

<p:poll ... ignoreAutoUpdate="true" />
于 2013-06-25T16:05:29.970 回答
9

对于使用 Primefaces 4.0 及更高版本的人们,Primefaces 团队已向他们的 ajax 感知组件添加了一个属性,以跳过 autoUpdate 设置为 true 的触发组件。所以你的民意调查是

<p:poll ignoreAutoUpdate="true" .../>

另请参阅他们的博客文章:http ://blog.primefaces.org/?p=2836

于 2014-04-21T20:29:38.487 回答