How to use the Refresh() and Save() methods to add a callback to the form's save

9.6k Views Asked by At

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?

1

There are 1 best solutions below

6
On

Have you tried calling save and calling refresh in the save callback?

Save: Xrm.Page.data (client-side reference)

Xrm.Page.data.save(saveOptions).then(successCallback, errorCallback)

Refresh: Xrm.Page.data (client-side reference)

Xrm.Page.data.refresh(save).then(successCallback, errorCallback);

Combined:

Xrm.Page.data.save().then(function(){Xrm.Page.data.refresh(false);});

-- EDIT --

I'm going to guess at what you're trying to do...

  1. A change is made to the form
  2. The user clicks save or an auto-save is executed
  3. Once the CRM has fully saved the record, you want to perform some other javascript action?

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.

function ExecuteWhenSaveComplete(callback) {
    setTimeout(function () {
        if(!Xrm.Page.data.entity.getIsDirty())
            return callback();
        //alert('not complete');
        ExecuteWhenSaveComplete(callback);
    }, 500);
}

function SetExecuteOnSaveComplete(){
    ExecuteWhenSaveComplete(function(){
        alert('form save complete');
        // do what you need to do
    });
}