如何用一个按钮从多个表单中保留?

时间:2013-06-03 13:12:36

标签: java forms jsf primefaces

我有两种形式,一个按钮。

<h:form>
    <h:outputLabel value="Form Name: *" />
    <p:inputText required="true" value="#{currentTemplate.name}" />
</h:form>

和另一种形式的一个按钮。

<h:form id="orderListForm">
    <p:commandButton value="Submit"
    action="#{orderListBean.callPersist}" style="margin-top:5px"
    id="btnCitySubmit" />
</h:form>

我想用第二个表单保存第一个表单的值。

我非常感谢你的回答!

1 个答案:

答案 0 :(得分:1)

您想要以两种形式执行所有输入吗?然后,process="@all"的{​​{1}}属性适合您。它将处理页面中的所有输入

或者,您可以指定要处理的组件的ID,例如<p:commandButton>,如果要更新的表单已指定process="@form :another-form"