English
Event Definitions for Form Page Modules at Different Levels
About 146 wordsLess than 1 minute
2025-09-22
Events are emitted at certain stages during object form loading or operations, such as after loading is completed.
Event Naming Convention
- Asynchronous events:
${module}.${action}.${timing} - Synchronous events:
${module}.${action}.${timing}.sync - Modules:
form,field,md, ... - Actions:
render,edit, ... - Timing:
before,after,end
Timing Description
before: pre-action stage, generally suitable for intercepting user operations. The exact capability depends on the event.after: post-action stage. If it is a data change operation, data retrieved fromdataGetterinside the plugin is still the original data. Changed data can be obtained from parameters, and calculation/UI events have not yet been triggered.end: action finished. Calculation/UI events have completed, but before UI update. At this time, data retrieved fromdataGetterinside the plugin is already the updated data.
