English
triggerSubmit
About 44 wordsLess than 1 minute
2025-09-22
Triggers the submission flow.
Parameters
None
Return Value
None
Code Example
{
event: "form.render.end",
functional: function (pluginExecResult, options) {
console.log("custom plugin: form.render.end exec");
let {bizApi}=options;
bizApi.triggerSubmit();// Example only. Usually suitable for triggering in a custom button
}
},