RE: handling multiple independent window

2004-08-16 Thread Kailash Vasani
similar requirement or not. I guess they might have knocked it off the list of requirement. Thanks & Regards, Kailash Vasani -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, August 16, 2004 12:24 PM To: [EMAIL PROTECTED] Subject: Re: handling mult

Re: handling multiple independent window

2004-08-15 Thread brenmcguire
I think you could use a request-scope bean that contains an ID referring to one item in a session-scope collection (here I mean an array, a Map, a List...). Then expose your item in a page-context bean (using bean:define) and use it in the rest of the JSP page. Ciao Antonio Kailash Vasani wrote:

handling multiple independent window

2004-08-13 Thread Kailash Vasani
Hi, Is it possible to have 2 windows showing same JSP page, but different data, using struts? The data to be displayed is populated in form bean, in action class. Both the JSP pages would be performing same set of operations, but not necessarily in same order. Operations are Save, Update etc. Whe