
I just created a sub grid in Case entity. I just created the Regarding field business required to open direct popup on + button, instead of showing lookup.
Its functional, popup open. I added the popup for Phone call activity. Now I want to refresh parent screen when popup close. I tried with but not working.
function ReloadParentWindow()
{
if (window.opener && !window.opener.closed)
{
window.opener.location.reload();
self.close();
}
}
I tried this but not working. See the screen. I added the script on phone call Form properties but not working. Please let me know where I was wrong.
*This post is locked for comments
I have the same question (0)Try to run your JavaScript function on subgrid's refresh event. Every time the grid is refreshed you will be able to refresh the main form data.
Thanks