onUnload

This method is called when the browser page is closed. It can be used to handle any kind of actions that should be performed before the browser’s onunload event is fired.

Your extending Application class can override this method, and include custom functionality as required.

The extending method may call the this.jsxsuper() method to include the base functionality. The base method calls the following to logout before the browser page is closed:

var maskMsg = this.getServer().
getDynamicProperty('txtOnUnloadLogout');
logoutOnUnload(this, true, maskMsg)

Syntax

onUnload();

Parameters

none

Returns

none