X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6a7e4474cba9d8be4b2ec445e10f1691f7277c50..6b044c28b5f26fb99c86c237ffad19741c0f7f3d:/docs/output/Ext.Window.html?ds=sidebyside diff --git a/docs/output/Ext.Window.html b/docs/output/Ext.Window.html index 48a6f68e..e1583b37 100644 --- a/docs/output/Ext.Window.html +++ b/docs/output/Ext.Window.html @@ -1,4 +1,9 @@ -
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
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.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'
+ }
+}
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...true
to hide the expand/collapse toggle button when collapsible == true
,
false
to display it (defaults to false
).The number of pixels to offset the shadow if displayed (defaults to 4
). Note that this
option only applies when floating = true
.
false
to disable the iframe shim in browsers which need one (defaults to true
).
-Note that this option only applies when floating = true
.floating = true
.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
@@ -1026,9 +1062,7 @@ Defaults to Ext.emptyFn
.
Ext.emptyFn
.Note: to access items within the Container see itemId.
ref
.Method | Defined By | |
---|---|---|
Window( Object config )
Parameters:
| Window | |
add( ...Object/Array component )
@@ -1128,12 +1162,12 @@ Or a shorthand syntax:Ext.Window Anchors this window to another element and realigns it when the window is resized or scrolled. Anchors this window to another element and realigns it when the window is resized or scrolled. Parameters:
| Window | |
applyToMarkup( String/HTMLElement el )
:
- voidApply this component to existing markup that is valid. With this function, no call to render() is required. Apply this component to existing markup that is valid. With this function, no call to render() is required. Parameters:
| Component | |
bubble( Function fn , [Object scope ], [Array args ] )
+ voidApply this component to existing markup that is valid. With this function, no call to render() is required. Apply this component to existing markup that is valid. With this function, no call to render() is required. Parameters:
| Component | |
bubble( Function fn , [Object scope ], [Array args ] )
:
- Ext.ContainerBubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of... Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of
+ Ext.Component Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of... Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of
function call will be the scope provided or the current component. The arguments to the function
will be the args provided or the current component. If the function returns false at any point,
-the bubble is stopped. Parameters:
| Container | |
cascade( Function fn , [Object scope ], [Array args ] )
+the bubble is stopped.Parameters:
| Component | |
cascade( Function fn , [Object scope ], [Array args ] )
:
Ext.ContainerCascades down the component/container heirarchy from this component (called first), calling the specified function wi... Cascades down the component/container heirarchy from this component (called first), calling the specified function with
each component. The scope (this) of
@@ -1228,9 +1262,11 @@ the default), or true to check whether this Component is directly of the specifi
:
Ext.Container Find a container above this component at any level by a custom function. If the passed function returns
true, the con... Find a container above this component at any level by a custom function. If the passed function returns
-true, the container will be returned. Parameters:
| Component | |
findParentByType( String/Class xtype )
+true, the container will be returned.Parameters:
| Component | |
findParentByType( String/Ext.Component/Class xtype , [Boolean shallow ] )
:
- Ext.ContainerFind a container above this component at any level by xtype or class Find a container above this component at any level by xtype or class Parameters:
| Component | |
fireEvent( String eventName , Object... args )
+ Ext.ContainerFind a container above this component at any level by xtype or class Find a container above this component at any level by xtype or class Parameters:
| Component | |
fireEvent( String eventName , Object... args )
:
BooleanFires the specified event with the passed parameters (minus the event name).
An event may be set to bubble up an Obse... Fires the specified event with the passed parameters (minus the event name). @@ -1377,7 +1413,7 @@ property to the registered type of the Component wanted.For a list of all available xtypes, see Ext.Component.
| Container | |
isVisible()
:
- Boolean Returns true if this component is visible. Returns true if this component is visible. Parameters:
| Component | |
isXType( String xtype , [Boolean shallow ] )
+ BooleanReturns true if this component is visible. Returns true if this component is visible. Parameters:
| Component | |
isXType( String/Ext.Component/Class xtype , [Boolean shallow ] )
:
BooleanTests whether or not this Component is of a specific xtype. This can test whether this Component is descended
from th... Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended @@ -1389,7 +1425,11 @@ to participate in determination of inherited xtypes.
Parameters:
| Component | |
load( Object/String/Function config )
:
Ext.PanelLoads this content panel immediately with content returned from an XHR call. Loads this content panel immediately with content returned from an XHR call. Parameters:
|