I want to add a callback to the form's save to fire the OnLoad event handler after the save has completed. I also want to force the page to refresh after the save is completed.
Google has shown me many web pages that reiterate the same information in the MSDN article, but they don't explain where to put the save method to add a callback after the form finishes saving.
I know that I can add Xrm.Page.data.refresh(true).then(callback) to a form control and have the page refresh that way, but I want the page to refresh after the save has completed.
How does one use Refresh() to refresh the form after the form is done saving?
Also, how do you use Save() to add a callback to the saving of the form that will run after the form is done saving?
Have you tried calling save and calling refresh in the save callback?
Save: Xrm.Page.data (client-side reference)
Refresh: Xrm.Page.data (client-side reference)
Combined:
-- EDIT --
I'm going to guess at what you're trying to do...
One thing you could try is hooking into the form OnSave event. Use a javascript timeout to check the form's isDirty property. Once the form is not dirty anymore, the CRM has saved the data.
Create a new form library javascript file and add something like the following: Create a new OnSave event for the form using 'SetExecuteOnSaveComplete' as the function to be called.