Pops up a modal dialog window, blocking access to the screen
and also graying out the screen Dialog is extended from
ContentPane so it supports all the same parameters (href, etc.)
|
|
|
_alreadyInitialized : Object
|
|
|
|
_attachPoints : Array
|
|
|
|
_earlyTemplatedStartup : Boolean
DetailsA fallback to preserve the 1.0 - 1.3 behavior of children in
templates having their startup called before the parent widget
fires postCreate. Defaults to 'false', causing child widgets to
have their .startup() called immediately before a parent widget
.startup(), but always after the parent .postCreate(). Set to
'true' to re-enable to previous, arguably broken, behavior.
|
|
|
|
_fadeIn : Object
|
|
|
|
_fadeOut : Object
|
|
|
|
_firstFocusItem : [readonly]
Initial valuenull
DetailsDomNode
The pointer to the first focusable node in the dialog.
Set by dijit._DialogMixin._getFocusItems .
|
|
|
|
_lastFocusItem : [readonly]
Initial valuenull
DetailsDomNode
The pointer to which node has focus prior to our dialog.
Set by dijit._DialogMixin._getFocusItems .
|
|
|
|
_modalconnects : Array
|
|
|
|
_moveable :
|
|
|
|
_relativePosition : Object
|
|
|
|
_savedFocus : Object
|
|
|
|
_scrollConnected : bool
|
|
|
|
_singleChildOriginalStyle :
|
|
|
|
_skipNodeCache : bool
|
|
|
|
_startupWidgets : Object
|
|
|
|
_supportingWidgets : Object
|
|
|
|
_templateCache : Object
|
|
|
|
aria-describedby : String
DetailsAllows the user to add an aria-describedby attribute onto the dialog. The value should
be the id of the container element of text that describes the dialog purpose (usually
the first text in the dialog).
<div dojoType="dijit.Dialog" aria-describedby="intro" .....>
<div id="intro">Introductory text</div>
<div>rest of dialog contents</div>
</div>
|
|
|
|
attributeMap : Object
Initial valuedojo.delegate((dijit._Widget.prototype.attributeMap, {title : [{node : "titleNode", type : "innerHTML", }, {node : "titleBar", type : "attribute", }], aria-describedby : "", }))
|
|
|
|
autofocus : Boolean
DetailsA Toggle to modify the default focus behavior of a Dialog, which
is to focus on the first dialog element after opening the dialog.
|
|
|
|
containerNode :
|
|
|
|
doLayout : Boolean
DetailsDon't change this parameter from the default value.
This ContentPane parameter doesn't make sense for Dialog, since Dialog
is never a child of a layout container, nor can you specify the size of
Dialog in order to control the size of an inner widget.
|
|
|
|
domNode :
|
|
|
|
draggable : Boolean
DetailsToggles the moveable aspect of the Dialog. If true, Dialog
can be dragged by it's title. If false it will remain centered
in the viewport.
|
|
|
|
duration : Integer
DetailsThe time in milliseconds it takes the dialog to fade in and out
|
|
|
|
open : Boolean
DetailsTrue if Dialog is currently displayed on screen.
|
|
|
|
refocus : Boolean
DetailsA Toggle to modify the default focus behavior of a Dialog, which
is to re-focus the element which had focus before being opened.
|
|
|
|
templatePath : String
Initial valuenull
DetailsPath to template (HTML file) for this widget relative to dojo.baseUrl.
|
|
|
|
templateString : Object
Initial valuedojo.cache(("dijit", "templates/Dialog.html"))
DetailsA string that represents the widget template. Pre-empts the
templatePath. In builds that have their strings "interned", the
templatePath is converted to an inline templateString, thereby
preventing a synchronous network call.
Use in conjunction with dojo.cache() to load from a file.
|
|
|
|
underlayAttrs : Object
|
|
|
|
widgetsInTemplate : Boolean
|