Re: How to cancel a cancel

2005-07-23 Thread Dakota Jack
; Cheers, > Kent > > -Original Message- > From: Kent Boogaart [mailto:[EMAIL PROTECTED] > Sent: Saturday, 23 July 2005 12:07 PM > To: 'Struts Users Mailing List' > Subject: RE: How to cancel a cancel > > Thanks for the suggestions guys. I stared at this one a

RE: How to cancel a cancel

2005-07-22 Thread Kent Boogaart
5 12:07 PM To: 'Struts Users Mailing List' Subject: RE: How to cancel a cancel Thanks for the suggestions guys. I stared at this one a bit longer and this is what I came up with...I put this code in my action class: @Override public ActionForward cancelled(ActionMapping mapp

RE: How to cancel a cancel

2005-07-22 Thread Kent Boogaart
7;t work for me because form 3 had data in it that form 2 required in order to display. Thanks, Kent -Original Message- From: Michael Jouravlev [mailto:[EMAIL PROTECTED] Sent: Saturday, 23 July 2005 1:08 AM To: Struts Users Mailing List Subject: Re: How to cancel a cancel On 7/22/05, Rick

Re: How to cancel a cancel

2005-07-22 Thread Michael Jouravlev
On 7/22/05, Rick Reumann <[EMAIL PROTECTED]> wrote: > Kent Boogaart wrote the following on 7/22/2005 5:49 AM: > > > > My actions for pages 2 and 3 have code like this in them: > > > > if (isCancelled(request)) { > > return mapping.findForward(FORWARD_CANCELLED); > > } > > > > My que

Re: How to cancel a cancel

2005-07-22 Thread Rick Reumann
Kent Boogaart wrote the following on 7/22/2005 5:49 AM: My actions for pages 2 and 3 have code like this in them: if (isCancelled(request)) { return mapping.findForward(FORWARD_CANCELLED); } My question is: is this the normal way to do it? If so, is there an easy / nice way to