We have reactivated case. We are assigning record to another user using custom functionality as out of box functionality could not fulfill the requirement. Once record is assigned (through html page / java script) , we want to refresh page so that new value
is reflected on case form.
We are getting following error message when we are trying to reload page with following java script code:
window.location.reload()
We even tried following additional code , still below mentioned error message persists:
var currentUrl = window.location.href;
if (currentUrl.indexOf('#') > -1)
{
currentUrl = currentUrl.replace('#', '');
}
else
{
currentUrl += '#';
}
window.location.href = currentUrl;
MS CRM 2011 To display the webpage again, the web browser needs to resend the information you've previously submitted. If you were making a purchase, you should click Cancel to avoid a duplicate transaction. Otherwise, click Retry to display the webpage
again.
Your inputs are highly appreciated.
Thanks!