RE: ValidatorForm losing params when validation fails

2003-11-10 Thread Marc Dugger
Users Mailing List Subject: RE: ValidatorForm losing params when validation fails The validate method of the form would be called before the execute method of action .. Why do you have to call the form.validate(mapping, request) explicitly , I doth think this code in acton would be executed

RE: ValidatorForm losing params when validation fails

2003-11-10 Thread Nimish Chourey , Tidel Park - Chennai
To: Struts Users Mailing List Subject: RE: ValidatorForm losing params when validation fails The validate method of the form would be called before the execute method of action .. Why do you have to call the form.validate(mapping, request) explicitly , I doth think this code in acton would

RE: ValidatorForm losing params when validation fails

2003-11-10 Thread Marc Dugger
Users Mailing List Subject: RE: ValidatorForm losing params when validation fails Yes .. It makes sense .. Can u post the action mapping in the struts config .. That may give some clue -Original Message- From: Marc Dugger [mailto:[EMAIL PROTECTED] Sent: Monday, November 10, 2003

ValidatorForm losing params when validation fails

2003-11-09 Thread Marc Dugger
The following code fragment is used in a DispatchAction and when the validation fails, the input form is returned unpopulated because all my form fields lose the data that was originally sent with the request: ActionErrors errors = form.validate(mapping, request); if (!errors.isEmpty()) {

RE: ValidatorForm losing params when validation fails

2003-11-09 Thread Nimish Chourey , Tidel Park - Chennai
:[EMAIL PROTECTED] Sent: Monday, November 10, 2003 6:45 AM To: [EMAIL PROTECTED] Subject: ValidatorForm losing params when validation fails The following code fragment is used in a DispatchAction and when the validation fails, the input form is returned unpopulated because all my form fields lose