Version 9.8
 —  Web Application Development  —

Pop-Up Manager

One of the biggest problems in session based host-to-Web applications is managing pop-up windows since Web applications window events are not related to server-side code. The Pop-up Window Manager’s main aim is to solve this problem, by providing a clear API for managing pop-up Web windows on the server and client-side.

This feature provides the following solutions:

This feature uses a frameset file (gx_container.jsp (JSP)/gx_container.aspx (.NET)) to perform submits from the left part of the frameset to the right part, and back. This way, first the Submit is performed, and then if the host contains a window, it will be opened as a Web window. The gx_window represents the pop-up windows' API. Each gx_window object has access to its opener window which is also a gx_window object, and this way a pop-up window can access, modify, etc. its opener window both on the client and server-side. For example, gx_window.opener.refreshPage(), will refresh the opening page if the current window is an opener.

Top of page