In one of our Entity’s Form we were using HTML Web Resource and this HTML web resource was showing values of the attributes in that form.
Now in CRM 2011, after we save the record the form reloads and so our web resource was picking up the new values saved.
However in CRM 2013, on save, as the form doesn’t reload, the values were not getting updated in the HTML Web Resource.
So the solution was to refresh the Web Resource using Jscript on the On Save event of the form.
function refreshWebResArea() {
var webResArea = Xrm.Page.ui.controls.get("WebResource_Name");
webResArea.setSrc(webResArea.getSrc());
}
Hope it helps.
Discover more from Nishant Rana's Weblog
Subscribe to get the latest posts sent to your email.

I really could read about this all day!! Hopefully you own an RSS feed I could sign up for.
I had been really searching all through the internet concerning stories in respect to anger management tips.
LikeLike
Reblogged this on Dynamicsofdynamicscrm and commented:
Got asked this query and found solution from my old colleague.
LikeLike
on CRM 2015, Xrm.Page.data.entity.getId() is empty in the onSave (except if I implement my function in a setTimeout), I need to refresh with the id… do you know a better way than setTimeout to have the record id in the onSave handler?
LikeLike