在我的应用程序中,我在<p:panel>
中放置了<h:form>
。现在在这个面板中我有一些<p:inputText>
,在面板的最后我有两个按钮,一个是Submit
另一个是
Reset
。如果在提交表单之前按下Reset
按钮,则form
按钮正常工作。但是,如果我提交Reset
并且某些文本字段无法验证
那些字段包含先前输入的数据。现在,如果按Reset
按钮清除所有字段,则表示无效。
我的<p:commandButton value="#{Bundle['resetButton']}" process="@this" update="addCustomerPanel" immediate="true" />
按钮的代码:
<h:form id="customerForm">
<p:panel id="addCustomerPanel">
.......text fields and two buttons placed here
</p:panel>
<h:form>
表格如下:
reset
更新 我通过导航到{{1}}按钮单击上的同一页面解决了这个问题。