Do Submit
Last updated 10/04/2026
Overview
The Do Submit event is a server-side event that executes when a user clicks the Save button on an action loaded via a URL and after the data has been saved on the server. This allows the application to perform backend logic once the data is successfully stored.
How it Works
When a user clicks the Save button:
- If an On Submit event exists, it executes first on the client-side.
- The data is then sent to the server and saved.
- The Do Submit event executes on the server after the save is complete.
- Any server-side logic associated with the event executes.
Use Cases
- Log or audit form submissions
- Trigger additional backend processes after saving data
- Update related records or perform calculations
- Integrate with external systems after a successful save
- Enforce business logic that must occur after data is stored