Secure Global Desktop Administration Guide > Applets > isOpenGroup (webtop script and webtop tray applets)

isOpenGroup (webtop script and webtop tray applets)

Syntax

String isOpenGroup(String location)

Description

Returns "TRUE" if the client has downloaded the contents of the application group from the server, and returns "FALSE" if the group's contents have not been downloaded.

location is the full TFN name of a group object.

This method can be used with either the webtop script applet or the webtop tray applet.

Examples

verdict = applet.isOpenGroup(".../_ens/o=Indigo Insurance/cn=Applications");
if (verdict == "TRUE")
    alert("Contents of "Applications" downloaded!");
else
    alert("Contents of "Applications" NOT downloaded!");

Displays a dialog indicating whether the contents of the Applications group has been downloaded.

Related topics