1

我正在使用 Primefaces 3.5.2、Mojara 2.1.2。我在这个页面中有一个主要的 xhtml 页面和一个对话框。下面是一个简单的例子

<h:form>
   <p:commandButton id="btn1" oncomplete="dlg.show()" update="dlg" process="@form"/>
</h:form>

   <p:dialog id="dlg" widgetVar="dlg">
      <h:form>
         <p:tabView id="tabview" activeIndex="..always 0 ...">
           <p:tab id="tab1">
             <p:panelGrid>
               <p:inputText id="input1" value="#{myBean.integer}"/>

             p:selectOneMenue is rendered wrong, if the dialog is reopened.
               <p:selectOneMenu id="select" value="#{myBean.listVal}" filter="true" style="width:100%">
                 <p:selectItems value="#{myBean.list}" />
               </p:selectOneMenu>
               <p:commandButton action="#{myBean.ok}" value="ok" oncomplete="..." update="dlg" process="@form"/>
               <p:commandButton action="#{myBean.cancel}" value="cancel"  update="dlg" process="@form"oncomplete="dlg.hide()"/>
             <p:panelGrid>
           </p:tab>
           <p:tab id="tab2">
            ...
           </p:tab>
         </p:tabView>
      </h:form>
   </p:dialog>   

托管豆:

@ManagedBean
@SessionScoped
class MyBean {
   Integer integer;
   String listVal;

   public Integer getInteger() { ... }
   public void setInteger (Integer i) { ... }
   public void ok() { ... }
   public void cancel() { ... }

   public List<SelectItem> getList() { ... }
   public getListVal () { ... } 
   public setListVal (..) { ... }

}

如果我打开对话框,在输入字段 (input1) 中写入错误信息,例如文本而不是数字,然后单击“确定”,则输入将无效并标记为红色。我用取消或关闭按钮关闭对话框。如果我重新打开对话框,输入字段仍标记为红色。我不想要这种行为。

另一个问题:在无效状态下“选择”——Primefaces 中的组件经常改变大小。如果我将 p:selectOneMenu 替换为 h:selectOneMenu 则组件的大小正确。

我的问题是如何更改 JSF/Primefaces 的状态,以便在重新打开对话框后 JSF 将处于“验证”状态,并且 JSF 不会显示突出显示。

我试图用 setValid(true) 为“myBean.cancel”中的所有组件更改组件状态,但它没有帮助。类似于这个问题 How to mark other components invalid in a custom multi-field validator

更新

谢谢,红色边框的问题消失了。但我还有另一个非常相似的问题。请参阅:如果发生转换器/验证器错误,p:SelectOneMenue 在 Primefaces/JSF 中更改大小

4

1 回答 1

5

For resetting input fields consider using Omnifaces. Omnifaces provides a ResetInputAjaxActionListener for this. See here for more: http://showcase.omnifaces.org/eventlisteners/ResetInputAjaxActionListener.

Update 1

Since PrimeFaces 3.4 you can also use <p:resetInput> instead of Omnifaces ResetInputAjaxActionListener. See here: http://www.primefaces.org/showcase/ui/resetInput.jsf

Update 2

And since JSF 2.2 you can also use <f:ajax ... resetValues="true"/> or <f:resetValues render="...">.

于 2013-04-12T10:29:36.747 回答