Minimize Zones and initial display mode
When minimized RadWindow objects can be "docked" to an
html element - such as a DIV or a TD for example,
which can be styled to resemble a taskbar, for example.
The properties most likely to be used for achieving this behavior (in various
possible combinations) are:
- MinimizeZoneId
- the client id of the html element using the MinimizeZoneId property
- MinimizeMode
-
minimization mode should be 'dock to minimize zone'
- InitialBehavior-
specifies whether the window will appear initially minimized, "normal", pinned
or maximized.
- VisibleOnPageLoad
- whether the window object is autoamtically made visible when the page is
loaded
- SingleNonMinimizedWindow-
if set to true, only the current active window is with normal size, all other
windows are minimized to provide the most screen space.
Example:
<radW:RadWindowManager
VisibleOnPageLoad="true"
MinimizeZoneId="HorizontalMinimize"
MinimizeMode="MinimizeZone"
InitialBehavior="Minimize"
SingleNonMinimizedWindow="True"
id="Singleton"
runat=server>