actions: Array(default: ["Close"])
The buttons for interacting with the window. Predefined array values are "Close", "Refresh", "Minimize", and "Maximize".
animation: Object
A collection of {Animation} objects, used to change default animations. A value of false will disable all animations in the widget.
close: Animation
The animation that will be used when a Window closes.
open: Animation
The animation that will be used when a Window opens.
appendTo: Object(default: document.body)
The element that the Window will be appended to.
content: Object|String
Specifies a URL or request options that the window should load its content from. For remote URLs, a container iframe element is automatically created.
template: String
Template for the content of a Window.
draggable: Boolean(default: true)
Enables (true) or disables (false) the ability for users to move/drag a Window.
iframe: Boolean
Explicitly states whether content iframe should be created.
maxHeight: Number(default: Infinity)
The maximum height (in pixels) that may be achieved by resizing the window.
maxWidth: Number(default: Infinity)
The maximum width (in pixels) that may be achieved by resizing the window.
minHeight: Number(default: 50)
The minimum height (in pixels) that may be achieved by resizing the window.
minWidth: Number(default: 50)
The minimum width (in pixels) that may be achieved by resizing the window.
modal: Boolean(default: false)
Specifies whether the window should show a modal overlay over the page.
resizable: Boolean(default: true)
Enables (true) or disables (false) the ability for users to resize a Window.
title: String
The text in the window title bar.
visible: Boolean(default: true)
Specifies whether the window will be initially visible.