Lifecycle
Syntax and Structure
Rendering

When the page or a view is loaded, the framework will load the object definitions from the server. Then it will take the steps shown in the diagram to initialize the control.
- Object Creation: The constructor function is executed, which usually creates the properties and events.
- Set Property Values: The framework will set the property values it received from the server.
- Create Function: The create function will be called.
- Initial Rendering: The control will generate the initial HTML used by the control (render, openHtml, closeHtml).
- DOM Initialization: The initialization of the DOM elements generated by the provided HTML occurs (afterRender).
From this point on, the control lives its life and should be ready to respond to the UI and actions from the server (changing of properties / client actions).
Previous Topic: Syntax and Structure
Next Topic: Rendering