function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Swamy P R NSwamy P R N 

Refreshing parent window

Hi Guys,

I created a Button and displaying on Record Detail Page.This button opens a small VF Page.In that page i wrote some logic,when my functionality is done at that time i need to refresh the parent window as well as i need to close the child(opened) window.
I wrote like the below one, closing is working but its not refreshing parent record ID.

1st Trail :
top.parent.window.opener.location.href = "/{!rew.id}";
top.window.close();
2nd Trail :
window.opener.location.reload();
window.top.close();

Both are not working...can you justify..
Surya KiranSurya Kiran
Hi,

use below line for refreshing parent window.

window.top.location='/{!rew.id}';
Swamy P R NSwamy P R N
No Surya,

Its refreshing on same window,but i needed to refresh on parent window i.e, where i open that window in that place.