Re: Page refresh after AJAX Call

2010-07-01 Thread Jyothi Rajesh
cause the grid should appear on > the > main page. > > > > On Thu, Jul 1, 2010 at 11:49 AM, Jyothi Rajesh > wrote: > > > Hi, > > > > Here is how you can do it: > > > > 1) Have an independent JSP which will just include the grid using the > >

Re: Page refresh after AJAX Call

2010-06-30 Thread Jyothi Rajesh
Hi, Here is how you can do it: 1) Have an independent JSP which will just include the grid using the s:iterator tag. 2) The forward/result of the servlet/action given in the AJAX request should be this JSP. 3) In the AJAX callback function, the above JSP will give the HTML to be rendered. 4) Use

Re: How to call to another action from the action class

2010-06-24 Thread Jyothi Rajesh
You can try by giving the path of the action in place of /pages/ext/summary.jsp. Atleast that was how it is done in struts1.3 Thanks, Jyothi On Thu, Jun 24, 2010 at 11:39 AM, Kushan Jayathilake wrote: > Hi Guys, > > I want to call to another action mapping which has defined in the > struts.xml

Re: Submit not passing the form input to the action

2010-04-29 Thread Jyothi Rajesh
Not sure about struts 2, but in struts 1.3, there will need to be a collection object in the action form and this will need to be instantiated while declaring. And there needed to be getters and setters for the entire collection as well as inidiviual members with index.