Re: [S2] Passing values from one action to another

2007-07-17 Thread MK Tan
Have you try Chain Resulthttp://struts.apache.org/2.0.8/docs/chain-result.html ? On 7/17/07, yitzle [EMAIL PROTECTED] wrote: I got two action classes, A and B. A has a bunch of getters and B has corresponding setters. In order to get the value from A into B, does that value need to appear in

[S2] Passing values from one action to another

2007-07-16 Thread yitzle
I got two action classes, A and B. A has a bunch of getters and B has corresponding setters. In order to get the value from A into B, does that value need to appear in the JSP? e.g. s:hidden name=variable1 /? I know I can get it to work by passing the values through the JSP (and calling B from