You need to sign in to do that
Don't have an account?

window.location.reload( true ) reloads parent page in frame
Hello i need only to reload frame with VF page.
I use <apex:commandButton value="Check" id="checkBtn" oncomplete="window.location.reload( true );"/>, but it reloads parrent page inside the visual forece page, how to fix it?
I use <apex:commandButton value="Check" id="checkBtn" oncomplete="window.location.reload( true );"/>, but it reloads parrent page inside the visual forece page, how to fix it?
Try something like this.
<apex:commandButton value="Check" id="checkBtn" oncomplete="document.getElementById('iframeID').contentWindow.location.reload();"/>
DON'T forget to replace iframeID with your actual Iframe id.