IsMDNonOptimized function

Syntax

IsMDNonOptimized()

Description

For master/detail and activity guide components, use the IsMDNonOptimized function to return a Boolean value whether the master/detail or activity guide wrapper is in non-optimized mode (that is, navigation to pages is presented in a drop-down list in the fluid banner, not in the left panel). The default value is False; optimized mode is in effect (that is, items are presented in the left panel).

Note:

This function is equivalent to the IsMDListPopup function.

Important:

Use this function within fluid applications only.

Parameters

None.

Returns

A Boolean value.

Example

Local boolean &bNonOptimized = IsMDNonOptimized();

If Not (&bNonOptimized) Then
   /* Some processing */
End-If;