how to close popup window and refresh parent window

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
8/9/2010 5:16:07 AM
Gravatar
Total Posts 4

how to close popup window and refresh parent window

how to close popup window and refresh parent window with selected page node?

8/19/2010 3:33:34 PM
Gravatar
Total Posts 76

Re: how to close popup window and refresh parent window

You will need to code some JS.

One way to do this is in the close method of the popup window, refresh the parent. then close oneself.

Javascript:

if (window.opener && !window.opener.closed) {
window.opener.location.reload();

window.close();

Google it there are some other ways depending on how complex u need to get.

You must sign in to post in the forums. This thread is closed to new posts.