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
JBabuJBabu 

To refresh standard case layout with pop up VF page values.

Hi,

I have popped a vf page from a button of on the std case page
I am inserting some values from the pop up vf page to the std case page.

But to see the updated values  in the std case page, I need to manually refresh the case.

Is there any way, can that case page be automatically refreshed when the values are inserted in to case object?

Please let me know.

Thanks,
JBabu.
Nitin PaliwalNitin Paliwal
HI,
Try this in the Javascript when the update operation is completed.

function CloseMe()
             {
                 window.opener.location.reload();
                 window.close();
             }
Call this function on the "oncomplete" attribute.

This has to be on the vf page.

Thanks
Nitin
JBabuJBabu
Hi Nitin,

I have tried the way you have suggested but it is not refreshing the case page.

The case page is in the std console. Is this causing any issue and stopping the refresh?

Any other way to refresh the console std case page from the popped up VF page?

(or) can give the path of the parent window to refresh it? please let me know how to give the path and refresh it?

Thanks,
Babu.