X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6:/docs/output/Ext.Window.html diff --git a/docs/output/Ext.Window.html b/docs/output/Ext.Window.html index 382d200d..e1583b37 100644 --- a/docs/output/Ext.Window.html +++ b/docs/output/Ext.Window.html @@ -1,4 +1,9 @@ -
Observable
  Component
    BoxComponent
      Container
        Panel
          Window

Class Ext.Window

Package:Ext
Defined In:Window.js
Class:Window
Extends:Panel

A specialized panel intended for use as an application window. Windows are floated, resizable, and +

Class Ext.Window

Package:Ext
Defined In:Window.js
Class:Window
Extends:Panel

A specialized panel intended for use as an application window. Windows are floated, resizable, and draggable by default. Windows can be maximized to fill the viewport, restored to their prior size, and can be minimized.

Windows can also be linked to a Ext.WindowGroup or managed by the Ext.WindowMgr to provide @@ -39,7 +44,36 @@ markup will be autogenerated if necessary.

renderTo will be ignored and the target element's parent node will automatically be used as the panel's container.

Panel autoDestroy : Boolean
If true the container will automatically destroy any contained component that is removed from it, else destruction mu...
If true the container will automatically destroy any contained component that is removed from it, else -destruction must be handled manually (defaults to true).
Container autoHeight : Boolean
true to use height:'auto', false to use fixed height (defaults to false). +destruction must be handled manually (defaults to true).
Container autoEl : Mixed
A tag name or DomHelper spec used to create the Element which will +encapsulate this Component. +You do not normally ne...

A tag name or DomHelper spec used to create the Element which will +encapsulate this Component.

+

You do not normally need to specify this. For the base classes Ext.Component, Ext.BoxComponent, +and Ext.Container, this defaults to 'div'. The more complex Ext classes use a more complex +DOM structure created by their own onRender methods.

+

This is intended to allow the developer to create application-specific utility Components encapsulated by +different DOM elements. Example usage:

{
+    xtype: 'box',
+    autoEl: {
+        tag: 'img',
+        src: 'http://www.example.com/example.jpg'
+    }
+}, {
+    xtype: 'box',
+    autoEl: {
+        tag: 'blockquote',
+        html: 'autoEl is cool!'
+    }
+}, {
+    xtype: 'container',
+    autoEl: 'ul',
+    cls: 'ux-unordered-list',
+    items: {
+        xtype: 'box',
+        autoEl: 'li',
+        html: 'First list item'
+    }
+}
Component autoHeight : Boolean
true to use height:'auto', false to use fixed height (defaults to false). Note: Setting autoHeight: true means that t...
true to use height:'auto', false to use fixed height (defaults to false). Note: Setting autoHeight: true means that the browser will manage the panel's height based on its contents, and that Ext will not manage it at all. If the panel is within a layout that @@ -100,7 +134,7 @@ element:

}, footerCfg: { tag: 'h2', - cls: 'x-panel-footer' // same as the Default class + cls: 'x-panel-footer', // same as the Default class html: 'footer html' }, footerCssClass: 'custom-footer', // additional css class, see addClass @@ -331,7 +365,8 @@ of this Panel's header Element. See bodyCf...

A header Element. See bodyCfg also.

Panel height : Number
The height of this component in pixels (defaults to auto). Note to express this dimension as a percentage or offset s...
The height of this component in pixels (defaults to auto). Note to express this dimension as a percentage or offset see Ext.Component.anchor.
BoxComponent hidden : Boolean
Render this component hidden (default is true). If true, the -hide method will be called internally.
Window hideBorders : Boolean
True to hide the borders of each contained component, false to defer to the component's existing +hide method will be called internally.
Window hideAnimDuration : Number
The number of seconds that the window hide animation takes if enabled. +Defaults to 0.25
Window hideBorders : Boolean
True to hide the borders of each contained component, false to defer to the component's existing border settings (def...
True to hide the borders of each contained component, false to defer to the component's existing border settings (defaults to false).
Container hideCollapseTool : Boolean
true to hide the expand/collapse toggle button when collapsible == true, false to display it (defaults to false).
Panel hideLabel : Boolean
true to completely hide the label element @@ -763,7 +798,8 @@ only applies when
Panel shim : Boolean
false to disable the iframe shim in browsers which need one (defaults to true). Note that this option only applies wh...
false to disable the iframe shim in browsers which need one (defaults to true). -Note that this option only applies when floating = true.
Panel stateEvents : Array
An array of events that, when fired, should trigger this component to +Note that this option only applies when floating = true.
Panel showAnimDuration : Number
The number of seconds that the window show animation takes if enabled. +Defaults to 0.25
Window stateEvents : Array
An array of events that, when fired, should trigger this component to save its state (defaults to none). stateEvents ...

An array of events that, when fired, should trigger this component to save its state (defaults to none). stateEvents may be any type of event supported by this component, including browser or custom events @@ -991,8 +1027,12 @@ of the Panel's Layout.

Note: see the Note for el also.

Panel buttons : Array
This Panel's Array of buttons as created from the buttons config property. Read only.
Panel bwrap : Ext.Element
The Panel's bwrap Element used to contain other Panel elements (tbar, body, bbar, footer). See bodyCfg. Read-only.
Panel collapsed : Boolean
True if this panel is collapsed. Read-only.
Panel dd : Ext.dd.DD
If this Window is configured draggable, this property will contain -an instance of Ext.dd.DD which handles dragging th...
If this Window is configured draggable, this property will contain -an instance of Ext.dd.DD which handles dragging the Window's DOM Element.
Window disabled : Boolean
True if this component is disabled. Read-only.
Component el : Ext.Element
The Ext.Element which encapsulates this Component. Read-only. +an instance of Ext.dd.DD which handles dragging th...

If this Window is configured draggable, this property will contain +an instance of Ext.dd.DD which handles dragging the Window's DOM Element.

+

This has implementations of startDrag, onDrag and endDrag +which perform the dragging action. If extra logic is needed at these points, use +createInterceptor or createSequence to +augment the existing implementations.

Window disabled : Boolean
True if this component is disabled. Read-only.
Component el : Ext.Element
The Ext.Element which encapsulates this Component. Read-only. This will usually be a <DIV> element created by the ...

The Ext.Element which encapsulates this Component. Read-only.

This will usually be a <DIV> element created by the class's onRender method, but that may be overridden using the autoEl config.

@@ -1022,14 +1062,12 @@ Defaults to Ext.emptyFn.
Window< Defaults to Ext.emptyFn.
Window ownerCt : Ext.Container
This Component's owner Container (defaults to undefined, and is set automatically when this Component is added to a C...
This Component's owner Container (defaults to undefined, and is set automatically when this Component is added to a Container). Read-only. -

Note: to access items within the Container see itemId.

Component private : Object
We can only lay out if there is a view area in which to layout. -display:none on the layout target, *or any of its par...
We can only lay out if there is a view area in which to layout. -display:none on the layout target, *or any of its parent elements* will mean it has no view area.
Container refOwner : Ext.Container
The ancestor Container into which the ref reference was inserted if this Component +

Note: to access items within the Container see itemId.

Component refOwner : Ext.Container
The ancestor Container into which the ref reference was inserted if this Component is a child of a Container, and has...
The ancestor Container into which the ref reference was inserted if this Component is a child of a Container, and has been configured with a ref.
Component rendered : Boolean
True if this component has been rendered. Read-only.
Component

Public Methods

MethodDefined By