English
md.batchAdd.after
About 151 wordsLess than 1 minute
2025-09-22
Post-action after batch adding.
- Suitable for processing data that is about to be batch 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 |
| lookupField | Lookup field selected in the batch-add scenario | Object |
| lookupDatas | Lookup object data selected from the selection component in the batch-add scenario | Array |
| newDatas | Data that will be added. dataIndex has already been generated, and elements in newDatas can be modified directly in the plugin | Array |
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 |
Notes
- Directly assigning
newDatasitself is meaningless, for example:options.newDatas=[]
