ScriptLoader - Client
-
- UpdatedJan 30, 2025
- 1 minute read
- Yokohama
- API implementation and reference
The ScriptLoader API provides methods to load scripts asynchronously.
You can use this API in client-side scripts for a platform/desktop UI using ListV2 and ListV3 APIs. It isn't available for Service Portal, Mobile, or Agent Workspace.
You access ScriptLoader methods by using the global object ScriptLoader
.
ScriptLoader - getScripts(Array scripts, Function callback)
Loads scripts asynchronously.
Name | Type | Description |
---|---|---|
scripts | Array | Array of scripts to load. |
callback | Function | Function to call when the scripts have been loaded. The callback function must not have any arguments. |
Type | Description |
---|---|
void |
Example
ScriptLoader - getScripts(String filePath, Function callback)
Gets scripts asynchronously.
Name | Type | Description |
---|---|---|
filePath | String | Path, including the file name, that contains one or more scripts. |
callback | Function | Function to call after the scripts have been loaded. This callback function should not have arguments. |
Type | Description |
---|---|
void |
Example
This example shows how load a utility script and then run the getDepartment() function.