0

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

<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>

我想用第二种形式保存第一种形式的值。

我真的很感谢你的回答!

4

1 回答 1

1

您想以两种形式执行所有输入吗?然后process="@all"属性<p:commandButton>是给你的。它将处理页面内的所有输入

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

于 2013-06-03T14:53:08.493 回答