onSessionInvalid

This method handles any actions that should be performed when the current login session is no longer valid. This is usually due to a session timeout or opening another browser instance of this application on the same session.

The base class implementation for this method displays the txtInvalidLogin message to the user and reloads the application using:

window.location.reload(false);

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

The extending method must call the following method to include the functionality provided in the base Application class:

  • this.jsxsuper();

Syntax

onSessionInvalid ();

Parameters

none

Returns

none