Primefaces 单元格编辑在验证失败时留在编辑模式

Primefaces cell edit leave in edit mode when validation fails

我在 p:selectOneMenu 和 editable=true 上使用带有单元格编辑和验证器的 p:dataTable。如果所选 p:selectOneMenu 值或输入的值无效,我希望单元格编辑状态保持编辑模式(第二个屏幕截图),并在输入周围显示红色框,就像我使用常规表格一样(第三个屏幕截图).当验证失败时,会显示咆哮和消息,但下拉列表周围的红色框不会持续存在,恐怕用户可能不会注意到(第一个屏幕截图)。我不知道如何 ajax 更新以显示红框,但要让单元格保持编辑模式,以便下拉菜单和红框仍然可见。

<p:dataTable id="table" value="#{bean.data}" var="lineItem" editable="true" editMode="cell">

<p:column headerText="* Account">
  <p:cellEditor>
    <f:facet name="output">
       <h:outputText value="#{lineItem.account}" />
    </f:facet>

    <f:facet name="input">
      <p:selectOneMenu id="so" value="#{lineItem.account}" editable="true" dynamic="true"  converter="omnifaces.SelectItemsConverter" title="Type an account or select a stored favorite" validator="com.gdeb.rozycki.app.acountValidator" >

      <f:selectItem noSelectionOption="true" itemLabel="---Favorites" itemValue="null" />
      <f:selectItems value="#{bean.favorites}" var="fav" itemLabel="#{fav.acctNum}" itemValue="#{fav}" />
                                            
      <p:ajax disabled="#{facesContext.validationFailed}" update="table growl messages" listener="#{bean.updateAccountInline(lineItem)}" />
      </p:selectOneMenu>
    </f:facet>
  </p:cellEditor>
</p:column>

此屏幕截图我尝试将帐户更改为使用 space 保存的收藏夹,但我们不再需要 space。 (是的,当用户保存他们最喜欢的帐号时,我现在有验证不允许 space,但我们将实施其他验证)当验证失败时,仅显示 header 和咆哮消息。如第二个屏幕截图所示,在他们再次单击下拉菜单之前,红线是不可见的。

ajax 调用在其 update 属性中具有数据表 ID table。我删除了那个 ClientID 并删除了 disabled="#{facesContext.validationFailed}"

我认为 cellEdit 函数会自动更新实现 cellEdit 的组件 ClientId。所以不需要在我的 ajax 标签中明确指定。

而且我还猜测 ajax 标记总是运行更新,但侦听器仅在成功时运行。

我可能不完全理解为什么,但这对我有用:

  <p:ajax update="growl messages" listener="#{bean.updateAccountInline(lineItem)}" />