Click on a window to make it the current active window (that will receive API commands)
RadWindow object
RadWindow objects on the page are managed by the RadWindowManager
Both RadWindowManager and RadWindow inherit from RadWindowBase which defines a
set of common properties. For easier customization, the common properties that
are set in RadWindowManager apply to all child RadWindow controls, and each
individual RadWindow can override these with a new value.
RadWindow class defines the following property that is not present in
RadWindowManager:
- Splash (Specifies whether the window is used as a
splash screen that is hidden at page load)
Other properties that are likely to be set to RadWindow
- VisibleOnPageLoad - (if true it will automatically make
visible all windows from the windows collection when the page is loaded. By
default this value is false.)
- OffsetElementId - the id of an html element, whose upper
left corner will be used by window objects to position themselves when showing.
Commonly used in combination with Top and Left
properties to psecify additional offsets.
- MinimizeZoneId - the id of an html element that will
be used as a docking zone when a window is minimized
- InitialBehavior - specifies whether the windows will
be minimized or maximized initially (values can be added together - for
example in addition you can specify whether to pin the windows)
- Behavior - specifies whether the window can be
maximized, minimized, resized, closed, pinned by the user.
The clientside API features methods for moving, resizing and closing the window
object.