English
detail.multitable.render.after
About 108 wordsLess than 1 minute
2025-12-16
This hook is called after rendering a child-object table on the detail page.
Parameters
functional registers the hook callback. The host passes the following parameters:
| Parameter | Description | Type | Allowed Values | Default |
|---|---|---|---|---|
| context | Event context containing common parameters | Object | -- | -- |
| plugin | Current plugin runtime information; business logic normally does not need it | Object | -- | -- |
| context.targetObjectApiName | API name of the current child object | String | -- | -- |
Return Value
This hook currently exposes no return configuration.
Basic Examples
Observe Child-table Rendering
export default class Plugin {
apply() {
return [{
event: 'detail.multitable.render.after',
functional: this.renderAfter.bind(this)
}];
}
renderAfter(context, plugin) {
console.info('Child table rendered', context.targetObjectApiName);
}
}