BaseConfigurationPage class
Level: advanced
Page controller classes are inherited from the Terrasoft.controller.BaseConfigurationPage
class that provides methods of handling the life cycle events.
Methods
initializeView(view)
Method is called after the page view in the DOM is being created (but was not rendered). On this stage you can subscribe to the events of the view classes and perform additional actions with DOM.
pageLoadComplete(isLaunch)
Provides extension of the logic that is executed at the page load and return. The true
value of the isLaunch
parameter indicates that the page is being loaded for the first time.
launch()
Called only when the page is opened. The method initiates the loading of data. If you need to load additional data, use the launch()
method.
pageUnloadComplete()
Provides extension of the logic that is executed at the page unload and closure.