Re: Multiple Actions for a single page. Is this possible

2008-03-18 Thread matt.payne
By chaining several actions together. All of the getters inside those actions are availible to the resulting .jsp/vm/or ftl. I have used chain in cases where I had a more generic action that supplied values for picklists and I needed those values supplied to several pages. The action definition

Re: Multiple Actions for a single page. Is this possible

2008-03-16 Thread ravi_eze
hi, We have a form in c.jsp which by some event makes an ajax call fetching b.jsp, a.jsp and rendering it. Now the requirement is that (1) i want to get this b.jsp by calling some other action class. (2) Once its rendered and i submit the page c.jsp the consecutive action class should be able

Re: Multiple Actions for a single page. Is this possible

2008-03-14 Thread matt.payne
chaining is one way to accomplish this. http://struts.apache.org/2.x/docs/action-chaining.html ravi_eze wrote: > > hi, > > We have two pages a.jsp and b.jsp developed with the action class mehods > Ac.a() & Ac.b() that render these pages. Now we need to develop a new page > c.jsp which is com

Re: Multiple Actions for a single page. Is this possible

2008-03-14 Thread Bently Drake
, Warm Regards, - Original Message From: Ralf Fischer <[EMAIL PROTECTED]> To: Struts Users Mailing List Sent: Friday, March 14, 2008 2:41:52 PM Subject: Re: Multiple Actions for a single page. Is this possible Hi, On 3/14/08, ravi_eze <[EMAIL PROTECTED]> wrote: > We

Re: Multiple Actions for a single page. Is this possible

2008-03-14 Thread Ralf Fischer
Hi, On 3/14/08, ravi_eze <[EMAIL PROTECTED]> wrote: > We have two pages a.jsp and b.jsp developed with the action class mehods > Ac.a() & Ac.b() that render these pages. Now we need to develop a new page > c.jsp which is combination of both a & b.jsps. > > i can include the jsps into the c.jsp