Skip to main content

FormEvents

type FormEvents = {
form.load: FormLoadListener;
form.unload: FormUnloadListener;
};

events that notifies the form's lifecycle

Properties

form.load

form.load: FormLoadListener;

form is loaded and ready for user interaction

Use FormLoadListener to handle this event


form.unload

form.unload: FormUnloadListener;

form is unloaded and no longer available for user interaction

Use FormUnloadListener to handle this event