RE: More then 1 Action Forms in JSP

2006-05-25 Thread Raghuveer
onstants.TENTH_PAGE%>" in Struts-Config.xml . . Is this correct ? -Original Message- From: Monkeyden [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 7:38 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: More then 1 Action Forms in JSP As in a

RE: More then 1 Action Forms in JSP

2006-05-25 Thread Raghuveer
>You just need 2 >different forms pointing to different actions. I am using only one mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 7:49 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: More then 1 Action Forms in JSP Sure its possible for a JSP to call 2 dif

Re: More then 1 Action Forms in JSP

2006-05-25 Thread Monkeyden
: user@struts.apache.org Subject: More then 1 Action Forms in JSP I have 10 JSP's and used 10 Action forms,10 action classes(dispatch action and action) with 10 Action Mappings in Struts-config.xml. I have 1 common functionality where if user clicks HELP button in any screen i need to ge

RE: More then 1 Action Forms in JSP

2006-05-25 Thread Chaudhary, Harsh
. Harsh. -Original Message- From: Raghuveer [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 12:42 AM To: user@struts.apache.org Subject: More then 1 Action Forms in JSP I have 10 JSP's and used 10 Action forms,10 action classes(dispatch action and action) with 10 Action Map

Re: More then 1 Action Forms in JSP

2006-05-25 Thread Monkeyden
As in a pop-up? If so, then you create a HelpAction and JSP, which would be expecting a request parameter specifiying the current screen. Use that parameter to determine what content to fetch. Basically, it's a new Action. The only thing your 10 existing screens will be responsible for is pass

More then 1 Action Forms in JSP

2006-05-24 Thread Raghuveer
I have 10 JSP's and used 10 Action forms,10 action classes(dispatch action and action) with 10 Action Mappings in Struts-config.xml. I have 1 common functionality where if user clicks HELP button in any screen i need to get documennt stored in database and show to user. Question1) Is it possiab