Re: Re: complex validation problem.

2006-04-29 Thread Jakub Milkiewicz
Hi Thanks for all answers. Finally i created 2 new validators: skipNextIf and gotoNextIf. They both test some expression which is passed in var-value parameter and if the expression is evaluated to true, skipNextIf return false and gotoNextIf return true. As you can imagine, i do not add any

Re: ActionForward and input form

2006-04-29 Thread sudip shrestha
Is there some sort of setting that I am missing here? I would appreciate any kind of help. --- Pat Slater [EMAIL PROTECTED] wrote: I have an method in a class that extends DispatchAction that throws Exception such as: public ActionForward saveMethod(ActionMapping mapping, ActionForm form,

Re: ActionForward and input form

2006-04-29 Thread sudip shrestha
Can you post your struts-config file here as well --- sudip shrestha [EMAIL PROTECTED] wrote: Is there some sort of setting that I am missing here? I would appreciate any kind of help. --- Pat Slater [EMAIL PROTECTED] wrote: I have an method in a class that extends

Re: ActionForward and input form

2006-04-29 Thread Pat Slater
I am using Spring with Struts... so type is a DelegatingActionProxy the real action bean is defined in a separate config file which is not important here. But the part of the struts-config file is here: actionpath=/actions/subManager/saveMethod

Is Action Chaining Strongly Discouraged?

2006-04-29 Thread Caroline Jen
I have seen some discussions on this forum regarding action chaining. Primarily, the advices are to think through the business logic before making decision on chaining actions. What are the disadvantages of action chaining? Why action chaining is not a good practice?