hub.eb?material_id=422&track_id=431

Introduction to JavaScript API System


The system interface has functions for loading a Properties File and gives access to a number of system services:

An example of a system function is to check if a user is logged on:

// check if user is logged on
var userLoggedOn = system.securityManager.isUserLoggedOn();

// if the user is not logged on go to the login form
if(!userLoggedOn){
  form.gotToForm("login");
}

Current Module

Related