Skip to main content

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:

  1. If an On Submit event exists, it executes first on the client-side.
  2. The data is then sent to the server and saved.
  3. The Do Submit event executes on the server after the save is complete.
  4. 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