I have requirement in which I am calling a script in OnLoad event and inside the script I have a Xrm.Page.data.entity.save(); that saves my form. Here, I am facing a problem that form keeps reload after the save operation. Kindly suggest a way so that I can prevent the reload in CRM 2011
Event-OnLoad
Script- function setDummyValue()
{
Xrm.Page.getAttribute("tdummyvalue").setValue("9811");
Xrm.Page.data.entity.save();
}
*This post is locked for comments