Hi Experts,
I have an HTML web resource that loads during the onload of a form. If the formtype is 1 it does not build anything otherwise the HTML web resource loads a table of data from the existing record.
It looks like the behavior of the save on a form does not load the HTML web resource without trickery.
I put the following code in my OnSave of my form but the alert in my HTML web resource that says "HI" is not showing. Any guidance would be appreciated.
OnSave runs:
function refreshWebResArea() { var webResArea = Xrm.Page.ui.controls.get("WebResource_ContractChangeStatusBar"); webResArea.setSrc(webResArea.getSrc()); }
*This post is locked for comments