Xrm.Page.data properties and methods refresh Asynchronously refreshes and optionally saves all the data of the form without reloading the page. save Saves the record asynchronously with the option to set callback functions to be executed after the save operation is completed. ...
javascript : (function() {window.prompt(‘All About This Entity Record: ‘,frames[0].Xrm.Page.data.entity.getEntityReference().entityType + ” ” + frames[0].Xrm.Page.data.entity.getEntityReference().id + ” ” + frames[0].Xrm.Page.data.entity.getEntityReference().name)})(); Here...
Xrm.Page.data.refresh(save).then(successCallback, errorCallback); Parameters Expand table Name Type Required Description save Boolean No true if the data should be saved after it is refreshed, otherwise false. successCallback Function No A function to call when the operation succeeds. errorCall...