RE: Wishing I could use multiple ActionForms...

2004-01-22 Thread Eric Bariaux
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 22, 2004 5:39 PM > To: [EMAIL PROTECTED] > Subject: RE: Wishing I could use multiple ActionForms... > > But why to take all the effort?I mean then the struts auto p

RE: Wishing I could use multiple ActionForms...

2004-01-22 Thread shirishchandra.sakhare
[mailto:[EMAIL PROTECTED] Sent: Thursday, January 22, 2004 5:32 PM To: 'Struts Users Mailing List' Subject: RE: Wishing I could use multiple ActionForms... Just one trick/hack I used in the past for such a situation. Instead of having a bunch of hidden parameters to hold the values, I m

RE: Wishing I could use multiple ActionForms...

2004-01-22 Thread Eric Bariaux
e, ... so it becomes the whole "workflow scope" you're referring to. And I don't know of any free implementation of this. Eric. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 22, 2004 9:35 AM > To: [EMAIL P

RE: Wishing I could use multiple ActionForms...

2004-01-22 Thread Brian Ivey
gards, Shirish -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 21, 2004 11:45 PM To: Struts Users Mailing List Subject: RE: Wishing I could use multiple ActionForms... > Finally, my question: How do I retain the data entered on > the first tw

RE: Wishing I could use multiple ActionForms...

2004-01-22 Thread shirishchandra.sakhare
, Shirish -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 21, 2004 11:45 PM To: Struts Users Mailing List Subject: RE: Wishing I could use multiple ActionForms... > Finally, my question: How do I retain the data entered on > the first two pag

RE: Wishing I could use multiple ActionForms...

2004-01-21 Thread Wendy Smoak
> Finally, my question: How do I retain the data entered on > the first two pages and contained in the first ActionForm? Put it in session scope and take care not to reset the fields prematurely. -- Wendy Smoak Application Systems Analyst, Sr. ASU IA Information Resources Management

RE: Wishing I could use multiple ActionForms...

2004-01-21 Thread Richard Hightower
Put the first ActionForm in session scope. (scope="session" in the action mapping) You can get from the attribute attribute in the action mapping. (just see what you have this set to) if the attribute attribute is blank then the value of the attribute attribute becomes the name attribute. just