English
detail.multitable.render.after
About 84 wordsLess than 1 minute
2025-12-16
This hook is triggered after the child-object table on the detail page is rendered. It is used to perform extra actions after rendering.
Parameters
| Parameter | Description | Type | Allowed Values | Default |
|---|---|---|---|---|
| Common parameters | See details | object | — | — |
| targetObjectApiName | Child object apiName | String | — | — |
Hook Execution Result
| Parameter | Description | Type | Allowed Values | Default |
Basic Example
Basic usage
export default class Plugin {
apply() {
return [{
event: "detail.multitable.render.after",
functional: this.detailListRenderAfter.bind(this)
}]
}
async detailListRenderAfter(plugin, context) {
return Promise.resolve({});
}
}