English
md.del.after
About 131 wordsLess than 1 minute
2025-09-22
Post-action after deletion.
- Can be used to process data that is about to be deleted
dataGettercan retrieve the data that is about to be deleted- 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 |
| delDatas | Data that is about to be deleted. Elements in delDatas can be modified directly in the plugin | Array |
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
delDatasitself is meaningless, for example:options.delDatas=[]
