Skip to main content

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

EventExecutesDescription
On SubmitClientExecutes when the Save button is clicked on an action that the URL holds and before the data is sent to the server.
Do SubmitServerExecutes 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:

  1. On Submit executes first.
  2. Do Submit executes second.