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
Shirley MaglioShirley Maglio 

How to refresh the entire Quote Detail page, when a button is clicked on the Visualforce page embedded on the Quote Detail page?

Hi,

I have embedded a Visualforce page as a section on the Quote Detail page.  How do I refresh the entire Quote Detail page, when a button is clicked on the Visualforce page?

Any help is greatly appreciated!

Thanks,
Shirley
Edwin VijayEdwin Vijay
Call this javascript line and the whole page reloads

window.parent.location.reload()

Ex: <apex:commandbutton onclick="javascript:window.parent.location.reload();" value="Reload Page">
Shirley MaglioShirley Maglio
Thanks for the tip.