Client-Side Framework and Components / Client-Side Framework lifecycle |
Client-Side Framework (CSF) events are fired from the CSF and can be caught by the components.
These events are fired to notify the components about CSF activity.
Event name | Description | Arguments |
---|---|---|
onAfterUIUpdate | Fired when the UI is in a stable state (After CSF initialization or after an incremental update). | None. |
onAfterUpdate | Fired when the UI is in a stable state and after all attribute handler has been called. | None. |
onBeforeUpdate | Fired before the updating the DOM from an incremental update. | None. |
onPost | Fired after data has been post to the Genero Web Client (GWC) engine (and before the response is received). | None. |
onPostReponse | Fired when the GWC engine respond to a client request. | None. |
onRollback | Fired when the CSF rollbacks local modifications. | processingFrame: The frame that produced the
rollback. mute: Whether the rollback may be ignored by the user. |
onCSFIdle | Fired when the CSF has handled all client-side event and has processed all GWC engine responses. | None. |
applicationEnded | Fired when the GWC engine has ended the application. | None. |
onAfterLayout | Fired when a layout reflow has been done. | None. |