我有以下表单,我只想用我的 p:commandButton 提交,但是,我在所有输入框中都收到了提交,我如何只在 p:commandButton 上提交表单?
<h:form>
<p:panel header="Lista de Referências" id="panel">
<h:panelGrid columns="2" cellpadding="5">
<h:outputLabel>Referência</h:outputLabel>
<p:inputText value="#{entradaProdutoController.referencia}"
onkeypress="if (event.keyCode == 13) {onchange(); return false; }">
<f:ajax event="change"
render="textDescri"
listener="#{entradaProdutoController.listener}"/>
</p:inputText>
<h:outputLabel>Descrição</h:outputLabel>
<h:outputText id="textDescri" value="#{entradaProdutoController.replyWith}" />
<h:outputLabel>Quantidade</h:outputLabel>
<p:inputText size="5" value="#{entradaProdutoController.quantidade}" />
</h:panelGrid>
</p:panel>
<p:commandButton value="Adicionar" update="printTable" actionListener="#{entradaProdutoController.addAction(event)}">
</p:commandButton>