LookupStringCache Method
The LookupStringCache method gets a string from the client string cache. It uses the following syntax:
LookupStringCache (index)
where:
index is a number that identifies the location of a string that resides in the client string cache.
For example:
// Assume appletControl to be the reference of an applet control.
var justification = appletControl.GetJustification(); //Returns text justification
in index.
var stringJustification = SiebelApp.S_App.LookupStringCache (justification);
alert (justification); // Will alert "Left" or "Right"
For another example that uses the LookupStringCache method, see GetPrompt Method.