Help needed in retrieving nested arraylists

2007-08-24 Thread Rajam T .
Hi My form Bean has an ArrayList say List1 which has objects of type Object1. The Object1 contains arraylist List2 which has objects of type Object2. The Object2 in turn contains an ArrayList List3 which has objects of type Object3. The Object3 has variables say v1, v2,v3 which are populated a

RE: how to forward some action from javascritp

2007-08-08 Thread Rajam T .
Hi, You can use the below given statements in javascripts to forward the control to the action. document.forms[0].action='myAction.do'; document.forms[0].submit(); Thanks & Regards Rajam Thirunavukkarasu -Original Message- From: msg2ajay [mailto:[EMAIL PROTECTED] Sent: Wednesday, Aug

RE: Struts list regeneration problem

2007-08-07 Thread Rajam T .
Hi, You need to have a getter and setter for the id you have given to the iterate tag in the form bean. The return type of the getter method should be the type of object you have inside the arraylist. This way you can retrieve the arraylist. One more point to be noted is all the tags like whi