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
Sravanthi GSravanthi G 

How to refresh the Parent page when we update the child page in detail page

How to refresh the Parent page when we update the child page in detail page
VamsiVamsi
Hi,

Please make use of the below one in child page to refresh the parent page.

<script language="JavaScript" type="text/javascript">
        function Refreshp(){
            window.opener.location.href="/{!$CurrentPage.parameters.id}";
                  }
     </script>