X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..b37ceabb82336ee82757cd32efe353cfab8ec267:/docs/output/Ext.Window.html diff --git a/docs/output/Ext.Window.html b/docs/output/Ext.Window.html index 382d200d..766ffa85 100644 --- a/docs/output/Ext.Window.html +++ b/docs/output/Ext.Window.html @@ -1,4 +1,4 @@ -
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 +

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 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 +39,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 +129,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 @@ -991,8 +1020,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 +1055,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