English
md.add.end
About 116 wordsLess than 1 minute
2025-09-22
Triggered after adding one row is fully completed.
- Calculation and UI events have finished, and the newly added data can be obtained from
dataGetter
Parameters
| Parameter | Description | Type |
|---|---|---|
| objApiName | api_name of the object whose data was changed | String |
| recordType | Business type of the changed data | String |
| newData | Newly added data, with dataIndex already generated. It can be modified directly in the plugin | Object |
| calUiRst | Result of calculation and UI events in the after event. See triggerCalAndUIEvent return value | Object |
Return Value
| Parameter | Description | Type |
|---|---|---|
| autoOpenForm | true automatically opens the form popup after adding one detail row | Boolean |
Code Example
{
event: "md.add.end",
functional: function (pluginExecResult, options) {
return {autoOpenForm:true}
}
}