Skip past navigation linksSecure Global Desktop 4.31 Administration Guide > Applets > getValue (framework applet)

getValue (framework applet)

Syntax

Skip past command syntax or program codeString getValue(String key)

Description

The getValue method returns general information matching the key string.

Examples

Skip past command syntax or program code<SCRIPT Language="JavaScript">
function getvalue(key)
{
   value = document.applets[0].getValue(key);
   alert("The value is: " + value);
}
</SCRIPT>

Defines a function that displays a dialog showing the value of an arbitrary key stored with the framework applet.

Note that the framework applet must be present in the same web page as the getvalue method.

Related topics