ListView + SubmitLink + RequiredTextField

2008-04-25 Thread nanotech
Hi All, I have a Required TextField and SubmitLink inside a ListView (which is dynamic). When I click the submit link for a row...it validates all the text fields in List View rather than the textfield against that link (and shows that field is required .) Is there a way to get around this ?

Re: ListView + SubmitLink + RequiredTextField

2008-04-25 Thread Martijn Dashorst
submit works on forms not fields. This is basic HTML. So you need to make each row a form instead of all rows in the form. Martijn On 4/25/08, nanotech [EMAIL PROTECTED] wrote: Hi All, I have a Required TextField and SubmitLink inside a ListView (which is dynamic). When I click the

Re: ListView + SubmitLink + RequiredTextField

2008-04-25 Thread Maurice Marrink
You can use setDefaultFormProcessing(false) on the submitlink. That way you can manually trigger the validation of a single component. Maurice On Fri, Apr 25, 2008 at 3:45 PM, nanotech [EMAIL PROTECTED] wrote: Hi All, I have a Required TextField and SubmitLink inside a ListView (which is