Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Script modules are used to define common use library functions. Modules can be called from pre work, post work like server environment or form and validation rule like client environment.

...

Define a Script Module

  1. Click to "+" icon from "Script Modules"
  2. Specify the module name. Because module name used in script environment, whitespace or other punctuation chars cannot be used.
  3. Modify the module content as following script

...

Module functions called in "ModuleName.FunctionName(arguments)" syntax. For the example above example , you call that function as the following sample;

Code Block
var result = MyModule.sum(1,2);

...