Save Event
Save Event - app.record.index.edit.submit
An event triggered when the save button of the inline editing is clicked on the record list.
Function
app.record.index.edit.submit
Properties of the Event Object
| PROPERTY | TYPE | DESCRIPTION |
|---|---|---|
| appId | Number | The App ID. |
| recordId | Number | The Record ID. |
| record | Object | A record object that holds data inputted by the user. For more information, refer to the following article: Field Types |
| type | String | The event type. Returns app.record.index.edit.submit. |
Cancel Actions
Actions can be cancelled by doing one of the following:
- Show field errors
- Show record errors
- return
false
Available Event Object Actions
Limitations
- This event is only available on the Desktop, and not on the mobile.
- The value of a calculated field retrieved via the event object depends on whether the field is displayed in the record list:
- If displayed in the list: Returns an empty string
- If not displayed in the list: Returns the value before recalculation
- Refer to the Limitations section of the following article for more details:
Event Handling