Re: Validation of multiple textfield in a dynamic ListView

2009-04-17 Thread Igor Vaynberg
however you want. you have the object graph. you can either use a visitor to locate whatever components you want, or you can keep direct references, or you can use a visitor to broadcast an event. completely up to you. -igor On Fri, Apr 17, 2009 at 12:44 PM, Thierry Leveque wrote: > Ok, that is

Re: Validation of multiple textfield in a dynamic ListView

2009-04-17 Thread Thierry Leveque
Ok, that is a good start. Now how do I access the form data within that method? Is there any documentation on that or any example? Thanks! Thierry Sent from Montreal, Quebec, Canada On Fri, Apr 17, 2009 at 14:22, Igor Vaynberg wrote: > override form.onvalidate() > > -igor > > On Fri, Apr 17, 2

Re: Validation of multiple textfield in a dynamic ListView

2009-04-17 Thread Igor Vaynberg
override form.onvalidate() -igor On Fri, Apr 17, 2009 at 7:05 AM, Thierry Leveque wrote: > Hi > > I have a validation problem that I can figure out how to do: > > I have build a dynamic table for the user to enter data into text fields. > I am using the ListView component and some ajax behavior.

Validation of multiple textfield in a dynamic ListView

2009-04-17 Thread Thierry Leveque
Hi I have a validation problem that I can figure out how to do: I have build a dynamic table for the user to enter data into text fields. I am using the ListView component and some ajax behavior. Users can add and delete rows of the table. Everything works well, except for the validation. One of