Salesforce のページにカスタム ボタンがあります。このボタンは js コードをトリガーします。
window.open("{!$Label.SF_Base_URL}/apex/DeletePageiFrame",300,300);
DeletePageiFrame は、(外部 Web サイト用の) iframe と、クリック時に親ウィンドウを更新するボタンを持つ頂点ページです。
<form>
<INPUT TYPE="button" NAME="myButton" onclick="handleOnClose();" value="press to close"/>
</form>
//the js function
function handleOnClose()
{
alert(window.parent.location); // this gives child window location instead
window.parent.location.reload(); //refreshes child not parent
// window.top.location.reload();
// all the functions bellow didnt work.
// window.opener.location.reload(true);
// window.opener.location.reload(false);
// opener.location.reload();
// opener.reload();
// window.opener.location.reload();
// document.opener.document.location.href = document.opener.document.location.href;
}
また、親ウィンドウの更新を呼び出すためにウィンドウを閉じるイベントでトリガーしようとしましたが、クロムと子ウィンドウが親ではなく更新されることに問題がありました。
<script> window.onBeforeUnload=handleOnClose();</script>