Wrox Programmer Forums
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 1st, 2003, 05:08 PM
Authorized User
 
Join Date: Oct 2003
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Default window.opener.refresh

I have a pop-up window that comes up when a user click on a HyperLinkColumn in a datagrid. On the pop-up, the user will add a record at this point and hit the server side "submit" button.

At that point, I would like to close the pop-up and refresh the parent window. My Form is also server side so I dont think I can place my javascript code on a form event.

Does anyone have examples on how to do this?

Thanks

 
Old November 3rd, 2003, 05:13 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 1,212
Thanks: 0
Thanked 1 Time in 1 Post
Default

You just need to write some javascript into the body tag of the pop-up page after the submit has been processed, like this:

If <<record added test>> Then
  Response.Write "<HTML><HEAD></HEAD>"
  Response.Write "<BODY onload=""window.close(); window.opener.location.reload(true);"">"
  Response.Write "</BODY></HTML>"
Else
  ....





Similar Threads
Thread Thread Starter Forum Replies Last Post
window.opener for mozilla jun99 Javascript 3 September 1st, 2009 08:57 AM
Problem accessing the window.opener.opener maryuob Javascript 3 January 18th, 2006 05:25 AM
window.opener problems crmpicco Javascript How-To 2 September 30th, 2005 03:46 AM
window.opener help fs22 Javascript How-To 6 May 9th, 2004 10:50 PM
How to post data to window opener wjenkins Javascript How-To 4 August 30th, 2003 03:49 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.