English
form.render.end
About 69 wordsLess than 1 minute
2025-09-22
Triggered after the entire master/detail form page has fully finished loading, and the user can interact with it.
Parameters
| Parameter | Description | Type |
|---|---|---|
| calUiRst | Result of calculation and UI events in the after event. See triggerCalAndUIEvent return value for the structure | Object |
Return Value
None
Code Example
{
event: "form.render.end",
functional: function (pluginExecResult, options) {
console.log(options.calUiRst)
wx.showModal({
content: "Plugin intercepted renderEnd",
showCancel: false
})
}
}