RE: [OS-webwork] Setup form on validation failure...

2003-12-14 Thread Jason Carreira
From: Tao Starbow [mailto:[EMAIL PROTECTED] > Sent: Friday, December 12, 2003 7:49 PM > To: [EMAIL PROTECTED] > Subject: [OS-webwork] Setup form on validation failure... > > > Does anyone have any tips on doing preprocessing when a form fails > validation? > I have a f

Re: [OS-webwork] Setup form on validation failure...

2003-12-13 Thread Jan-Peter Hagenmüller
it could be done in the validate() method of your action, i think jp 13.12.2003 01:48:50, "Tao Starbow" <[EMAIL PROTECTED]> wrote: >Does anyone have any tips on doing preprocessing when a form fails >validation? >I have a form that some information from the database to set up the user >int

Re: [OS-webwork] Setup form on validation failure...

2003-12-12 Thread Francisco Hernandez
you can do pre-execute-processing using the Preparable interface with the Preparable Interceptor, just make sure the interceptor runs before the validation and workflow interceptors if you're using those. Tao Starbow wrote: Does anyone have any tips on doing preprocessing when a form fails v

[OS-webwork] Setup form on validation failure...

2003-12-12 Thread Tao Starbow
Does anyone have any tips on doing preprocessing when a form fails validation? I have a form that some information from the database to set up the user interface. Normally I just do this in the execute method. But when the form fails xwork validation, the execute method is never called. Does t