Field Change Event
Field Change Event - app.record.edit.change.(fieldcode)
An event triggered when a specified field value changes during the editing of a record.
Function
Desktop
app.record.edit.change.(fieldcode)
Mobile
mobile.app.record.edit.change.(fieldcode)
Triggered Timing
- When a specified field value changes on the Edit Record page.
- When the value of a field specified in a
fieldcode
is overwritten using the following API or events:
Fields That Can Be Specified
The same as the following article:
Record Create Event: Field Change Event
Properties of the Event Object
PROPERTY | TYPE | DESCRIPTION |
---|---|---|
appId | Number | The App ID. |
record | Object | A record object that holds form data inputted by the user at the point of the event. |
recordId | Number | The Record ID |
changes | Object | An object including data of changed fields and rows. |
changes.field | Object | An object of the changed field. |
changes.row | Object | An object of the changed row.
|
type | String | The event type. |
Available Event Object Actions
- Overwrite field values
- Enable/Disable field edits
- Show field errors
- Show record errors
- Run Lookup fields
- Clear copied Lookup field values
- Get the object of the edited field or table row
Limitations
- Events are not triggered for fields not listed in the following section:
Fields that can be specified - Although Lookup fields cannot be specified, their field mapping destinations can be.
- Values from the Attachment field cannot be retrieved.
- Refer to the Limitations section of the following article for more details:
Event Handling