Class: Config

Oracle® Fusion Middleware Oracle JavaScript Extension Toolkit (JET)
12c (12.1.4)

E54107-01

QuickNav

oj. Config

Services for setting and retrieving configuration options

Constructor

new Config()

Source:

Methods

<static> getLocale() → {string}

Retrieves the current locale
Source:
Returns:
current locale
Type
string

<static> getResourceUrl(relativePath) → {string}

Retrieves a URL for loading a component-specific resource. The URL is resolved as follows: 1. If the application has specified a base URL with setResourceBaseUrl(), the return values will be a relative path appended to the base URL. 2. Otherwise, if the application running with an AMD Loader (such as Require.js), the parent folder of the ojs/ojcore module will be used as a base URL. 3. Otherwise, the original relative path will be returned.
Parameters:
Name Type Description
relativePath string resource path
Source:
See:
Returns:
resource URL
Type
string

<static> setLocale(locale, callback)

Changes the current locale
Parameters:
Name Type Description
locale string (language code and subtags separated by dash)
callback Function for applications running with an AMD Loader (such as Require.js), this optional callback will be invoked when the framework is done loading its translated resources and Locale Elements for the newly specified locale. For applications running without an AMD loader, this optional callback will be invoked immediately
Source:

<static> setResourceBaseUrl(baseUrl)

Sets the base URL for retrieving component-specific resources
Parameters:
Name Type Description
baseUrl string base URL
Source:
See: