Re: Validating forms inside a loop

2011-05-13 Thread Steve Eynon
Hi, I've put the above into a Mixin, which works fine, but the implementation is a little "leaky" i.e. the containing component needs to define it as an Implementation Mixin and set the tracker name / context in the onPrepareForSubmit event. I've been trying to change it so that the mixin can be

Re: Validating forms inside a loop

2010-02-17 Thread jose luis sanchez
Wow, you really saved my day ! Thanks ! El 17/02/2010, a las 23:09, Josh Canfield escribió: > The problem is that you really only have one instance of the Form > component, and so only one instance of the ValidationTracker. I poked > around and wasn't able to find an easier way to do this. > > Do

Re: Validating forms inside a loop

2010-02-17 Thread Josh Canfield
The problem is that you really only have one instance of the Form component, and so only one instance of the ValidationTracker. I poked around and wasn't able to find an easier way to do this. Don't use ${} when passing the context. I used the index of the loop for the context. You can m

Validating forms inside a loop

2010-02-17 Thread Jose Luis Sanchez
Hi all. I have a multiple form problem .. and after having search and thought many on this, can't find a solution. clientValidation="false"> Well, that's a sample of what i have. I'll tell my usage : When the user clicks Reject, no clientValidation is done. That's why i di