Posts

Showing posts from April, 2016

Refresh ISV/WebResource after CRM 2013/2015/2016 Save Event

I had a Web Resource page which needed to refresh a jqgrid on it after some fields on a CRM form were updated and record was saved. In order to do this a ran a watcher to check to see if the modified date of the record had changed if so I ran the code to update the grid. This code is on the actual Web Resource page not the form JS. Also a quick note you may want to run another watcher to make sure window.parent.Xrm.Page is not null before you run this code. //set the initial modified on date var prevModifedOn = window.parent.Xrm.Page.getAttribute('modifiedon').getValue(); var xrmPageWatcher = window.setInterval(function () { //check to see if the date is modified, convert to string since JS doesn't know how to convert the CRM date time to a datetime object if (window.parent.Xrm.Page.getAttribute('modifiedon').getValue().toString() != prevModifedOn.toString()) { //update the previous data time so we can detect another save prevModifedOn = window