1.19 Display Settings

You can get the Display Settings for the Windows client. There are several different types of display settings that can be retrieved.

NOTE:In GroupWise 8.0 SP2, the noDisplay keyword was added to the view so the folder display settings are not returned when getting the folder(s) object. The display settings are not needed in normal use. There is thus no reason to get the settings for most cases. This reduces some of the SOAP traffic.

Folder

Returns the folder display settings list. In the Windows client, you can view this same information by selecting View > Display Settings > Select from the main toolbar.

To get the Folder display settings, you need to call getItemsRequest with “Folder” as the container. For example, getItemsRequest (“Folder”,view, null, null, 0, session, false);.

FolderDefault

Returns the folder list default display settings. In other words, it shows all the default settings for the system folders.

To get the FolderDefault display settings, you need to call getItemsRequest with “FolderDefaults” as the container. For example, getItemsRequest (“FolderDefault”, view, null, null, 0, session, false);.

Panel

Returns the panels defined on the home folder for the user.

To get the Panel display settings, you need to call getItemsRequest with “Panel” as the container. For example, getItemsRequest (“Panel”, view, null, null, 0, session, false);.

PanelTemplates

Returns all the available panels and their settings. In the Windows client, you can view this same information by selecting View > Display Settings > Panels from the main toolbar.

To get the panelTemplates display settings, you need to call getItemsRequest with “PanelTemplates” as the container. For example, getItemRequest(“PanelTemplates”, view, null, null, 0, session, false);.