English
md.add.after
About 134 wordsLess than 1 minute
2025-09-22
Post-action after adding one row.
- Suitable for processing data that is about to be added
dataGettercannot retrieve the data that is about to be added- Calculation and UI events are about to be triggered
Parameters
| Parameter | Description | Type |
|---|---|---|
| objApiName | api_name of the object whose data is currently changing | String |
| recordType | Business type of the data currently changing | String |
| newData | Data that will be added. dataIndex has already been generated, and it can be modified directly in the plugin | Object |
Return Value
| Parameter | Description | Type |
|---|---|---|
| consumed | true means subsequent logic will not continue | Boolean |
| notTriggerCalUi | Specifies that this calculation/UI event should not be triggered | Boolean |
| extraCalUiParams | Parameters used to customize the upcoming calculation/UI event logic | Object |
Notes
- Directly assigning
newDataitself is meaningless, for example:options.newData=null
