Author API Events
save:activity:success
Fires after an Activity has successfully saved.
You would want to be notified about this event firing, because you might want to display a custom success message in your application, for example.
Examples
authorApp.on('save:activity:success', function () {
console.log('This code executes when an Activity has successfully saved.');
});
Callback arguments
-
activityJson object
JSON of the Activity that has successfully saved.
Related articles
- The
saveActivity()
method, which saves the current Activity being edited. - The
activityedit:saveable:changed
event, which fires when the save Activity state changes. - The
save:activity
event, which fires before an Activity is to be saved. - The
save:activity:error
event, which fires when an Activity has failed to save.