RE: forwarding to a pop-up window

2004-05-03 Thread Ricardo Cortes
Here's an example of what I'm doing in my Struts application to handle opening up a popup window: a href=javascript:popup('core:url value=/displayNotePopup.do core:param name=messageSubject core:out value=${aMessageInstance.message.subject}//core:param core:param

RE: forwarding to a pop-up window

2004-05-03 Thread Brian Lee
For your form tag, set the target to a window name, then when you submit, call a javascript function that opens a new window with the same name. This will submit all the values from the current page into the targetted new window. I think you can also just do form target=_blank and it will

RE: forwarding to a pop-up window

2004-05-03 Thread Ricardo Cortes
, props); popup.focus(); } //-- /script -Original Message- From: Ricardo Cortes Sent: Monday, May 03, 2004 12:02 PM To: Struts Users Mailing List Subject: RE: forwarding to a pop-up window Here's an example of what I'm doing in my Struts application to handle opening up a popup