English
field.edit.after
About 167 wordsLess than 1 minute
2025-09-22
Triggered after a field edit action.
dataGetterstill returns the original data- Calculation and UI events are about to be triggered
- A change triggered by one field may contain changes to multiple fields in
changeData - Not triggered by non-manual edits
Parameters
| Parameter | Description | Type |
|---|---|---|
| fieldName | api_name of the field that triggered the event | String |
| objApiName | api_name of the object that triggered the event | String |
| dataIndex | dataIndex of the record that triggered the event, used for detail-object data | String |
| changeData | All field data changed by this edit action. The plugin can directly modify this object to change values of other fields. The underlying layer will finally trigger calculation based on changeData | Object |
See the field-type-specific event definitions for special parameters.
Return Value
| Parameter | Description | Type |
|---|---|---|
| notTriggerCalUi | Specifies that this calculation/UI event should not be triggered | Boolean |
| extraCalUiParams | Parameters used to customize the upcoming calculation/UI event logic | Object |
See the field-type-specific event definitions for special return values.
