Overview
Last updated 10/04/2026
URL Events
The URL events are used to control what happens when a user interacts with an action that is loaded via a URL. These events allow you to intercept, validate, or extend the save process, giving you control both before the data is sent to the server and after it has been successfully stored.
Events
| Event | Executes | Description |
|---|---|---|
| On Submit | Client | Executes when the Save button is clicked on an action that the URL holds and before the data is sent to the server. |
| Do Submit | Server | Executes when the Save button is clicked on an action that the URL holds after the On Submit (optional) completes. |
Order of Execution
If both events are implemented:
- On Submit executes first.
- Do Submit executes second.