On Saved
Triggered after the data has been successfully saved. This event is useful for post-save actions and feedback.
Commonly used for :
- Displaying success confirmations
- Triggering post-save workflows
- Refreshing related module data
- Sending audit or tracking logs
- Updating UI state after persistence
Sample Code :
REQUEST DETAILS
window.onload = function () {
ZFAPPS.extension.init().then(function(App) {
App.instance.on('ON_<MODULE_NAME>_SAVED', function () {
/* Actions */
});
})
};
Related Modules :