Interface SimpleNamesMode


public interface SimpleNamesMode

Simple Names mode

When Smart GWT runs in "simple names" mode (the default), all ISC Classes and several global methods are installed as JavaScript global variables, that is, properties of the browser's "window" object. When simple names mode is disabled (called "portal mode"), the framework uses only the global variable: "isc" and global variables prefixed with "isc_".

Portal mode is intended for applications which must integrate with fairly arbitrary JavaScript code written by third-party developers, and/or third party JavaScript frameworks, where it is important that each framework stays within it's own namespace.

Portal mode is enabled by setting window.isc_useSimpleNames = false before Smart GWT is loaded, generally inside the <head> element.