Stuck

  • Thread starter Thread starter HalaszJ
  • Start date Start date
H

HalaszJ

Ok,

I got this page (with a datagrid on it) that I hit a button on and it opens
a new page (popup). In that popup I have to option to delete the record that
got me there, or change it.. whatever.

Ok when I am done and close the popup and give focus back to the parent
form...

How can I refresh it so that the changes are shown.. or rebind it or
whatever.. how do I tell the form to do something once the child (popup) is
closed?

thanks
 
You can use "opener" object before closing the popup form.

like opener.MYFORM.submit(); or opener.refresh;
George.
 
You need some Java Script, to reload the grid's page
before closing your popup try :

opener.document.location.href=opener.document.location.href

or

top.opener.navigate(top.opener.document.location.href)

Hope this helps

Eduardo
 
Back
Top