Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Refresh DCR Form
rahulkulkarni
Hi,
I have CGI-callout button in datacapture.cfg. once I click on Button I want to Refresh DCR form (F5) . How to do that ?
Below code is not working for me :
datacapture.cfg
Refresh DCR
Refresh DCR
xyz.js
IWEventRegistry.addItemHandler("/REFRESH", "onCallout", reFresh);
function reFresh() {
alert(window.location);
window.location.reload(true);
}
Find more posts tagged with
Comments
Migrateduser
Hi,
Try window.top.opener.location.reload();
Kind regards,
James
rahulkulkarni
Hi,
Thanx James for your reply . But It is not giving me expected result. It is refreshing background window. i.e. Teamsite GUI . I want to refresh Current DCR form.
rahulkulkarni
Hi James,
Now It is working for me . I tried with
window.parent.location.reload(true);
Thank you once again.