open new window from struts page, leaves [object] in parent window

2004-02-18 Thread Martin Alley
Hi,

I guess this has been asked before, but I can't find the answer..

I've got a struts generated page, from which I want to open a new
window.
I do this with the following line, and I get my new window just like I
want
a href=javascript:window.open('%=
request.getContextPath() %/dataimages/bean:write name=itemForm
property=itemValue.imagePath/')
click here
/a
but the original window then contains a page that says [object] -
literally that!!

How do I get the original window not to change from what it displayed
before I click on the above link?

Thanks
Martin




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: open new window from struts page, leaves [object] in parent window

2004-02-18 Thread Wiebe de Jong

The best way is always to call an action to generate any page. With that in
mind, I open up new windows this way:

phtml:link href=#
onclick=window.open('findAccountCSV.do','csv')CSV/html:link/p

The # functions like a null link so the current window is not affected.

Wiebe
http://frontierj.blogspot.com
 

-Original Message-
From: Martin Alley [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 18, 2004 12:27 PM
To: [EMAIL PROTECTED]
Subject: open new window from struts page, leaves [object] in parent window

Hi,

I guess this has been asked before, but I can't find the answer..

I've got a struts generated page, from which I want to open a new
window.
I do this with the following line, and I get my new window just like I
want
a href=javascript:window.open('%=
request.getContextPath() %/dataimages/bean:write name=itemForm
property=itemValue.imagePath/')
click here
/a
but the original window then contains a page that says [object] -
literally that!!

How do I get the original window not to change from what it displayed
before I click on the above link?

Thanks
Martin




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]