Version 9.7
 —  Web Application Development  —

The Framework's Basic Life cycle

The framework is built upon a concept of a page life cycle, which is a general concept and not related to ApplinX host applications directly. The life cycle of a page is declared by the top context class:

JSP: com.sabratec.j2ee.framework.web.GXWebPageContext.

.NET: System.Web.UI.Page

Each page decides which is its class by declaring the root node: <gx:html gx_context=”<CONTEXT_CLASS>”> and closing it with </gx:html> as the end tag.

Each dynamic tag should be set with a prefix of “gx:” for example: <gx:input id=”CustomerId”/>. The <CONTEXT_CLASS> is initialized and starts the page Life cycle:

Top of page