If we have several forms like below and when i finally press submit button, it should send all the values from "froms1 to forms3" to the server. Is it something possible? I am using primefaces.
<h:form id="forms1">
<inputText .........
</h:form>
......
<h:form id="forms2">
......
</h:form>
.......
<h:form id="forms3">
.....
</h:form>
<p:commandButton value="submit" action="#{bean.action}" onSubmit="this.forms1,this.forms2,this.forms3" partialSubmit="true" />