You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by marc quast <ma...@gmail.com> on 2009/02/02 12:14:12 UTC

popout in struts

Hello,
i'm new in this list, i'm new j2ee developer
i have some question related to interfacing struts (jsp) with javascript
i have a link in the jsp page
once the user click on this link, i wanna show a pop out (i already made the
jsp page which will be dispalyed in this popout)
so the pb is , how display this popout (the original page and the popout
page are placed in the same directory)
here is the javascript function to show the popout :


function popitup(url) {

newwindow=window.open(url,'name','height=200,width=150');

if (window.focus) {newwindow.focus()}

return false;

}





Regards

Marc