Need More Than One Forms in JSF Page

2007-05-30 Thread Caroline Jen
I am building a JSF page. There is a QUERY functionality on top of the page. Therefore, I provide some input fields for users to enter search criteria. Those input fields in this QUERY form (form A) need validation. Below the QUERY, I have another form (form B). The form B has several buttons

Re: Need More Than One Forms in JSF Page

2007-05-30 Thread Mike Kienenberger
Best practice is to use one h:form and then put form A and B into separate sandbox:subForm elements. However, if you're not willing to use subforms, there should be no technical reason why you couldn't use multiple h:form elements. On 5/30/07, Caroline Jen [EMAIL PROTECTED] wrote: I am