Ext.data.JsonP.Ext_panel_Panel({"alternateClassNames":["Ext.Panel"],"aliases":{"widget":["panel"]},"enum":null,"parentMixins":["Ext.Queryable","Ext.container.DockingContainer","Ext.state.Stateful","Ext.util.Animate","Ext.util.ElementContainer","Ext.util.Floating","Ext.util.Observable","Ext.util.Positionable","Ext.util.Renderable"],"tagname":"class","subclasses":["Ext.container.ButtonGroup","Ext.form.Panel","Ext.menu.Menu","Ext.panel.Table","Ext.tab.Panel","Ext.tip.Tip","Ext.ux.GMapPanel","Ext.ux.event.RecorderManager","Ext.window.Window"],"extends":"Ext.panel.AbstractPanel","uses":[],"html":"

Alternate names

Ext.Panel

Hierarchy

Inherited mixins

Requires

Subclasses

Files

Panel is a container that has specific functionality and structural components that make it the perfect building\nblock for application-oriented user interfaces.

\n\n

Panels are, by virtue of their inheritance from Ext.container.Container, capable of being configured with a\nlayout, and containing child Components.

\n\n

When either specifying child items of a Panel, or dynamically adding\nComponents to a Panel, remember to consider how you wish the Panel to arrange those child elements, and whether those\nchild elements need to be sized using one of Ext's built-in layout\nschemes. By default, Panels use the Auto scheme. This simply renders child\ncomponents, appending them one after the other inside the Container, and does not apply any sizing at all.

\n\n

\"Panel

\n\n

A Panel may also contain bottom and top toolbars, along with separate header, footer and body sections.

\n\n

Panel also provides built-in collapsible, expandable and closable behavior. Panels can\nbe easily dropped into any Container or layout, and the layout and rendering pipeline\nis completely managed by the framework.

\n\n

Note: By default, the close header tool destroys the Panel resulting in removal of the\nPanel and the destruction of any descendant Components. This makes the Panel object, and all its descendants\nunusable. To enable the close tool to simply hide a Panel for later re-use, configure the Panel with\ncloseAction: 'hide'.

\n\n

Usually, Panels are used as constituents within an application, in which case, they would be used as child items of\nContainers, and would themselves use Ext.Components as child items. However to illustrate simply rendering a\nPanel into the document, here's how to do it:

\n\n
Ext.create('Ext.panel.Panel', {\n    title: 'Hello',\n    width: 200,\n    html: '<p>World!</p>',\n    renderTo: Ext.getBody()\n});\n
\n\n

A more realistic scenario is a Panel created to house input fields which will not be rendered, but used as a\nconstituent part of a Container:

\n\n
var filterPanel = Ext.create('Ext.panel.Panel', {\n    bodyPadding: 5,  // Don't want content to crunch against the borders\n    width: 300,\n    title: 'Filters',\n    items: [{\n        xtype: 'datefield',\n        fieldLabel: 'Start date'\n    }, {\n        xtype: 'datefield',\n        fieldLabel: 'End date'\n    }],\n    renderTo: Ext.getBody()\n});\n
\n\n

Note that the Panel above is configured to render into the document and assigned a size. In a real world scenario,\nthe Panel will often be added inside a Container which will use a layout to render, size and position its\nchild Components.

\n\n

Panels will often use specific layouts to provide an application with shape and structure by containing and\narranging child Components:

\n\n
var resultsPanel = Ext.create('Ext.panel.Panel', {\n    title: 'Results',\n    width: 600,\n    height: 400,\n    renderTo: Ext.getBody(),\n    layout: {\n        type: 'vbox',       // Arrange child items vertically\n        align: 'stretch',    // Each takes up full width\n        padding: 5\n    },\n    items: [{               // Results grid specified as a config object with an xtype of 'grid'\n        xtype: 'grid',\n        columns: [{header: 'Column One'}],            // One header just for show. There's no data,\n        store: Ext.create('Ext.data.ArrayStore', {}), // A dummy empty data store\n        flex: 1                                       // Use 1/3 of Container's height (hint to Box layout)\n    }, {\n        xtype: 'splitter'   // A splitter between the two child items\n    }, {                    // Details Panel specified as a config object (no xtype defaults to 'panel').\n        title: 'Details',\n        bodyPadding: 5,\n        items: [{\n            fieldLabel: 'Data item',\n            xtype: 'textfield'\n        }], // An array of form fields\n        flex: 2             // Use 2/3 of Container's height (hint to Box layout)\n    }]\n});\n
\n\n

The example illustrates one possible method of displaying search results. The Panel contains a grid with the\nresulting data arranged in rows. Each selected row may be displayed in detail in the Panel below. The vbox layout is used to arrange the two vertically. It is configured to stretch child items\nhorizontally to full width. Child items may either be configured with a numeric height, or with a flex value to\ndistribute available space proportionately.

\n\n

This Panel itself may be a child item of, for exaple, a Ext.tab.Panel which will size its child items to fit\nwithin its content area.

\n\n

Using these techniques, as long as the layout is chosen and configured correctly, an application may have any\nlevel of nested containment, all dynamically sized according to configuration, the user's preference and available\nbrowser size.

\n
Defined By

Config options

A string component id or the numeric index of the component that should be\ninitially activated within the container's...

A string component id or the numeric index of the component that should be\ninitially activated within the container's layout on render. For example,\nactiveItem: 'item-1' or activeItem: 0 (index 0 = the first item in the\ncontainer's collection). activeItem only applies to layout styles that can\ndisplay items one at a time (like Ext.layout.container.Card and\nExt.layout.container.Fit).

\n

Available since: 2.3.0

\n
Defines the anchoring size of container. ...

Defines the anchoring size of container.\nEither a number to define the width of the container or an object with width and height fields.

\n
true to animate the transition when the panel is collapsed, false to skip the animation (defaults to true\nif the Ext....

true to animate the transition when the panel is collapsed, false to skip the animation (defaults to true\nif the Ext.fx.Anim class is available, otherwise false). May also be specified as the animation\nduration in milliseconds.

\n
If true the container will automatically destroy any contained component that is removed\nfrom it, else destruction mu...

If true the container will automatically destroy any contained component that is removed\nfrom it, else destruction must be handled manually.

\n

Defaults to: true

Available since: 2.3.0

\n
A tag name or DomHelper spec used to create the Element which will\nencapsulate this Component. ...

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

\n\n

You do not normally need to specify this. For the base classes Ext.Component and\nExt.container.Container, this defaults to 'div'. The more complex Sencha classes use a more\ncomplex DOM structure specified by their own renderTpls.

\n\n

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

\n\n
{\n    xtype: 'component',\n    autoEl: {\n        tag: 'img',\n        src: 'http://www.example.com/example.jpg'\n    }\n}, {\n    xtype: 'component',\n    autoEl: {\n        tag: 'blockquote',\n        html: 'autoEl is cool!'\n    }\n}, {\n    xtype: 'container',\n    autoEl: 'ul',\n    cls: 'ux-unordered-list',\n    items: {\n        xtype: 'component',\n        autoEl: 'li',\n        html: 'First list item'\n    }\n}\n
\n

Available since: 2.3.0

\n
An alias for loader config which also allows to specify just a string which will be\nused as the url that's automatica...

An alias for loader config which also allows to specify just a string which will be\nused as the url that's automatically loaded:

\n\n
Ext.create('Ext.Component', {\n    autoLoad: 'content.html',\n    renderTo: Ext.getBody()\n});\n
\n\n

The above is the same as:

\n\n
Ext.create('Ext.Component', {\n    loader: {\n        url: 'content.html',\n        autoLoad: true\n    },\n    renderTo: Ext.getBody()\n});\n
\n\n

Don't use it together with loader config.

\n
\n

This cfg has been deprecated since 4.1.1

\n

Use loader config instead.

\n\n
\n
This config is intended mainly for non-floating Components which may or may not be shown. ...

This config is intended mainly for non-floating Components which may or may not be shown. Instead of using\nrenderTo in the configuration, and rendering upon construction, this allows a Component to render itself\nupon first show. If floating is true, the value of this config is omitted as if it is true.

\n\n

Specify as true to have this Component render to the document body upon first show.

\n\n

Specify as an element, or the ID of an element to have this Component render to a specific element upon first\nshow.

\n

Defaults to: false

true to use overflow:'auto' on the components layout element and show scroll bars automatically when necessary,\nfalse...

true to use overflow:'auto' on the components layout element and show scroll bars automatically when necessary,\nfalse to clip any overflowing content.\nThis should not be combined with overflowX or overflowY.

\n

Defaults to: false

true to automatically show the component upon creation. ...

true to automatically show the component upon creation. This config option may only be used for\nfloating components or components that use autoRender.

\n

Defaults to: false

Available since: 2.3.0

\n
The base CSS class to apply to this panel's element. ...

The base CSS class to apply to this panel's element.

\n

Defaults to: x-panel

Available since: 2.3.0

\n

Overrides: Ext.container.AbstractContainer.baseCls

Ext.panel.Panel
view source
: Object/Object[]
Convenience config. ...

Convenience config. Short for 'Bottom Bar'.

\n\n
bbar: [\n  { xtype: 'button', text: 'Button 1' }\n]\n
\n\n

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'bottom',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n
A shortcut to add or remove the border on the body of a panel. ...

A shortcut to add or remove the border on the body of a panel. In the classic theme\nthis only applies to a panel which has the frame configuration set to true.

\n

Available since: 2.3.0

\n
A CSS class, space-delimited string of classes, or array of classes to be applied to the panel's body element. ...

A CSS class, space-delimited string of classes, or array of classes to be applied to the panel's body element.\nThe following examples are all valid:

\n\n
bodyCls: 'foo'\nbodyCls: 'foo bar'\nbodyCls: ['foo', 'bar']\n
\n\n
A shortcut for setting a padding style on the body element. ...

A shortcut for setting a padding style on the body element. The value can either be\na number to be applied to all sides, or a normal css string describing padding.\nDefaults to undefined.

\n
Custom CSS styles to be applied to the panel's body element, which can be supplied as a valid CSS style string,\nan ob...

Custom CSS styles to be applied to the panel's body element, which can be supplied as a valid CSS style string,\nan object containing style property name/value pairs or a function that returns such a string or object.\nFor example, these two formats are interpreted to be equivalent:

\n\n
bodyStyle: 'background:#ffc; padding:10px;'\n\nbodyStyle: {\n    background: '#ffc',\n    padding: '10px'\n}\n
\n\n

Available since: 2.3.0

\n
Specifies the border size for this component. ...

Specifies the border size for this component. The border can be a single numeric value to apply to all sides or it can\nbe a CSS style specification for each style, for example: '10 5 3 10' (top, right, bottom, left).

\n\n

For components that have no border by default, setting this won't make the border appear by itself.\nYou also need to specify border color and style:

\n\n
border: 5,\nstyle: {\n    borderColor: 'red',\n    borderStyle: 'solid'\n}\n
\n\n

To turn off the border, use border: false.

\n

Defaults to: true

Available since: 2.3.0

\n

Overrides: Ext.AbstractComponent.border

An array of events that, when fired, should be bubbled to any parent container. ...

An array of events that, when fired, should be bubbled to any parent container.\nSee Ext.util.Observable.enableBubble.

\n

Available since: 3.4.0

\n
The alignment of any buttons added to this panel. ...

The alignment of any buttons added to this panel. Valid values are 'right', 'left' and 'center' (defaults to\n'right' for buttons/fbar, 'left' for other toolbar types).

\n\n

NOTE: The prefered way to specify toolbars is to use the dockedItems config. Instead of buttonAlign you\nwould add the layout: { pack: 'start' | 'center' | 'end' } option to the dockedItem config.

\n
Ext.panel.Panel
view source
: Object/Object[]
Convenience config used for adding buttons docked to the bottom of the panel. ...

Convenience config used for adding buttons docked to the bottom of the panel. This is a\nsynonym for the fbar config.

\n\n
buttons: [\n  { text: 'Button 1' }\n]\n
\n\n

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'bottom',\n    ui: 'footer',\n    defaults: {minWidth: minButtonWidth},\n    items: [\n        { xtype: 'component', flex: 1 },\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n\n

The minButtonWidth is used as the default minWidth for\neach of the buttons in the buttons toolbar.

\n
An array describing the child elements of the Component. ...

An array describing the child elements of the Component. Each member of the array\nis an object with these properties:

\n\n
    \n
  • name - The property name on the Component for the child element.
  • \n
  • itemId - The id to combine with the Component's id that is the id of the child element.
  • \n
  • id - The id of the child element.
  • \n
\n\n\n

If the array member is a string, it is equivalent to { name: m, itemId: m }.

\n\n

For example, a Component which renders a title and body text:

\n\n
Ext.create('Ext.Component', {\n    renderTo: Ext.getBody(),\n    renderTpl: [\n        '<h1 id=\"{id}-title\">{title}</h1>',\n        '<p>{msg}</p>',\n    ],\n    renderData: {\n        title: \"Error\",\n        msg: \"Something went wrong\"\n    },\n    childEls: [\"title\"],\n    listeners: {\n        afterrender: function(cmp){\n            // After rendering the component will have a title property\n            cmp.title.setStyle({color: \"red\"});\n        }\n    }\n});\n
\n\n

A more flexible, but somewhat slower, approach is renderSelectors.

\n
Ext.panel.Panel
view source
: Boolean
True to display the 'close' tool button and allow the user to close the window, false to hide the button and\ndisallow...

True to display the 'close' tool button and allow the user to close the window, false to hide the button and\ndisallow closing the window.

\n\n

By default, when close is requested by clicking the close button in the header, the close method will be\ncalled. This will destroy the Panel and its content meaning that it may not be\nreused.

\n\n

To make closing a Panel hide the Panel so that it may be reused, set closeAction to 'hide'.

\n

Defaults to: false

The action to take when the close header tool is clicked:\n\n\n'destroy' :\n\nremove the window from the DOM and destroy i...

The action to take when the close header tool is clicked:

\n\n
    \n
  • 'destroy' :

    \n\n

    remove the window from the DOM and destroy it and all descendant\nComponents. The window will not be available to be redisplayed via the show method.

  • \n
  • 'hide' :

    \n\n

    hide the window by setting visibility to hidden and applying negative offsets. The window will be\navailable to be redisplayed via the show method.

  • \n
\n\n\n

Note: This behavior has changed! setting does affect the close method which will invoke the\napproriate closeAction.

\n

Defaults to: 'destroy'

An optional extra CSS class that will be added to this component's Element. ...

An optional extra CSS class that will be added to this component's Element. This can be useful\nfor adding customized styles to the component or any of its children using standard CSS rules.

\n

Defaults to: ''

Available since: 1.1.0

\n
The direction to collapse the Panel when the toggle button is clicked. ...

The direction to collapse the Panel when the toggle button is clicked.

\n\n

Defaults to the headerPosition

\n\n

Important: This config is ignored for collapsible Panels which are direct child items of a border layout.

\n\n

Specify as 'top', 'bottom', 'left' or 'right'.

\n
true to make sure the collapse/expand toggle button always renders first (to the left of) any other tools in\nthe pane...

true to make sure the collapse/expand toggle button always renders first (to the left of) any other tools in\nthe panel's title bar, false to render it last.

\n

Defaults to: true

Important: this config is only effective for collapsible Panels which are direct child items of a\nborder layout. ...

Important: this config is only effective for collapsible Panels which are direct child items of a\nborder layout.

\n\n

When not a direct child item of a border layout, then the Panel's header\nremains visible, and the body is collapsed to zero dimensions. If the Panel has no header, then a new header\n(orientated correctly depending on the collapseDirection) will be inserted to show a the title and a re-\nexpand tool.

\n\n

When a child item of a border layout, this config has three possible values:

\n\n
    \n
  • undefined - When collapsed, a placeholder Header is injected into the layout to\nrepresent the Panel and to provide a UI with a Tool to allow the user to re-expand the Panel.

  • \n
  • \"header\" - The Panel collapses to leave its header visible as when not inside a\nborder layout.

  • \n
  • \"mini\" - The Panel collapses without a visible header.

  • \n
\n\n
Ext.panel.Panel
view source
: Boolean
true to render the panel collapsed, false to render it expanded. ...

true to render the panel collapsed, false to render it expanded.

\n

Defaults to: false

A CSS class to add to the panel's element after it has been collapsed. ...

A CSS class to add to the panel's element after it has been collapsed.

\n

Defaults to: 'collapsed'

True to make the panel collapsible and have an expand/collapse toggle Tool added into the header tool button\narea. ...

True to make the panel collapsible and have an expand/collapse toggle Tool added into the header tool button\narea. False to keep the panel sized either statically, or by an owning layout manager, with no toggle Tool.\nWhen a panel is used in a border layout, the floatable option\ncan influence the behavior of collapsing.\nSee collapseMode and collapseDirection

\n
Defines the column width inside column layout. ...

Defines the column width inside column layout.

\n\n

Can be specified as a number or as a percentage.

\n

CSS Class to be added to a components root level element to give distinction to it via styling.

\n

CSS Class to be added to a components root level element to give distinction to it via styling.

\n
The sizing and positioning of a Component's internal Elements is the responsibility of the Component's layout\nmanager...

The sizing and positioning of a Component's internal Elements is the responsibility of the Component's layout\nmanager which sizes a Component's internal structure in response to the Component being sized.

\n\n

Generally, developers will not use this configuration as all provided Components which need their internal\nelements sizing (Such as input fields) come with their own componentLayout managers.

\n\n

The default layout manager will be used on instances of the base Ext.Component\nclass which simply sizes the Component's encapsulating element to the height and width specified in the\nsetSize method.

\n

Defaults to: 'dock'

Overrides: Ext.AbstractComponent.componentLayout

Ext.panel.Panel
view source
: Boolean
True to constrain the panel within its containing element, false to allow it to fall outside of its containing\nelement. ...

True to constrain the panel within its containing element, false to allow it to fall outside of its containing\nelement. By default floating components such as Windows will be rendered to document.body. To render and constrain the window within\nanother element specify renderTo. Optionally the header only can be constrained\nusing constrainHeader.

\n

Defaults to: false

Overrides: Ext.util.Floating.constrain

True to constrain the panel header within its containing element (allowing the panel body to fall outside of\nits cont...

True to constrain the panel header within its containing element (allowing the panel body to fall outside of\nits containing element) or false to allow the header to fall outside its containing element.\nOptionally the entire panel can be constrained using constrain.

\n

Defaults to: false

A Region (or an element from which a Region measurement will be read) which is used\nto constrain the component. ...

A Region (or an element from which a Region measurement will be read) which is used\nto constrain the component. Only applies when the component is floating.

\n
An object or a string (in TRBL order) specifying insets from the configured constrain region\nwithin which this compon...

An object or a string (in TRBL order) specifying insets from the configured constrain region\nwithin which this component must be constrained when positioning or sizing.\nexample:

\n\n

constraintInsets: '10 10 10 10' // Constrain with 10px insets from parent

\n
Specify an existing HTML element, or the id of an existing HTML element to use as the content for this component. ...

Specify an existing HTML element, or the id of an existing HTML element to use as the content for this component.

\n\n

This config option is used to take an existing HTML element and place it in the layout element of a new component\n(it simply moves the specified DOM element after the Component is rendered to use as the content.

\n\n

Notes:

\n\n

The specified HTML element is appended to the layout element of the component after any configured\nHTML has been inserted, and so the document will not contain this element at the time\nthe render event is fired.

\n\n

The specified HTML element used will not participate in any layout\nscheme that the Component may use. It is just HTML. Layouts operate on child\nitems.

\n\n

Add either the x-hidden or the x-hide-display CSS class to prevent a brief flicker of the content before it\nis rendered to the panel.

\n

Available since: 3.4.0

\n

The initial set of data to apply to the tpl to update the content area of the Component.

\n

The initial set of data to apply to the tpl to update the content area of the Component.

\n

Available since: 3.4.0

\n
The default Ext.Element#getAlignToXY anchor position value for this menu\nrelative to its element of origin. ...

The default Ext.Element#getAlignToXY anchor position value for this menu\nrelative to its element of origin. Used in conjunction with showBy.

\n

Defaults to: "tl-bl?"

This object holds the default weights applied to dockedItems that have no weight. ...

This object holds the default weights applied to dockedItems that have no weight. These start with a\nweight of 1, to allow negative weights to insert before top items and are odd numbers\nso that even weights can be used to get between different dock orders.

\n\n

To make default docking order match border layout, do this:

\n\n
 Ext.panel.AbstractPanel.prototype.defaultDockWeights = { top: 1, bottom: 3, left: 5, right: 7 };\n
\n\n

Changing these defaults as above or individually on this object will effect all Panels.\nTo change the defaults on a single panel, you should replace the entire object:

\n\n
 initComponent: function () {\n     // NOTE: Don't change members of defaultDockWeights since the object is shared.\n     this.defaultDockWeights = { top: 1, bottom: 3, left: 5, right: 7 };\n\n     this.callParent();\n }\n
\n\n

To change only one of the default values, you do this:

\n\n
 initComponent: function () {\n     // NOTE: Don't change members of defaultDockWeights since the object is shared.\n     this.defaultDockWeights = Ext.applyIf({ top: 10 }, this.defaultDockWeights);\n\n     this.callParent();\n }\n
\n

Defaults to: {top: {render: 1, visual: 1}, left: {render: 3, visual: 5}, right: {render: 5, visual: 7}, bottom: {render: 7, visual: 3}}

The default xtype of child Components to create in this Container when\na child item is specified as a raw configurati...

The default xtype of child Components to create in this Container when\na child item is specified as a raw configuration object, rather than as an instantiated Component.

\n

Defaults to: "panel"

Available since: 2.3.0

\n
This option is a means of applying default settings to all added items whether added\nthrough the items config or via ...

This option is a means of applying default settings to all added items whether added\nthrough the items config or via the add or insert methods.

\n\n

Defaults are applied to both config objects and instantiated components conditionally\nso as not to override existing properties in the item (see Ext.applyIf).

\n\n

If the defaults option is specified as a function, then the function will be called\nusing this Container as the scope (this reference) and passing the added item as\nthe first parameter. Any resulting object from that call is then applied to the item\nas default properties.

\n\n

For example, to automatically apply padding to the body of each of a set of\ncontained Ext.panel.Panel items, you could pass:\ndefaults: {bodyStyle:'padding:15px'}.

\n\n

Usage:

\n\n
defaults: { // defaults are applied to items, not the container\n    autoScroll: true\n},\nitems: [\n    // default will not be applied here, panel1 will be autoScroll: false\n    {\n        xtype: 'panel',\n        id: 'panel1',\n        autoScroll: false\n    },\n    // this component will have autoScroll: true\n    new Ext.panel.Panel({\n        id: 'panel2'\n    })\n]\n
\n

Available since: 2.3.0

\n
True to move any component to the detachedBody when the component is\nremoved from this container. ...

True to move any component to the detachedBody when the component is\nremoved from this container. This option is only applicable when the component is not destroyed while\nbeing removed, see autoDestroy and remove. If this option is set to false, the DOM\nof the component will remain in the current place until it is explicitly moved.

\n

Defaults to: true

true to disable the component. ...

true to disable the component.

\n

Defaults to: false

Available since: 2.3.0

\n
CSS class to add when the Component is disabled. ...

CSS class to add when the Component is disabled.

\n

Defaults to: 'x-item-disabled'

A component or series of components to be added as docked items to this panel. ...

A component or series of components to be added as docked items to this panel. The docked items can be docked to\neither the top, right, left or bottom of a panel. This is typically used for things like toolbars or tab bars:

\n\n
var panel = new Ext.panel.Panel({\n    dockedItems: [{\n        xtype: 'toolbar',\n        dock: 'top',\n        items: [{\n            text: 'Docked to the top'\n        }]\n    }]\n});\n
\n

Overrides: Ext.panel.AbstractPanel.dockedItems

Specify as true to make a floating Component draggable using the Component's encapsulating element as\nthe drag handle. ...

Specify as true to make a floating Component draggable using the Component's encapsulating element as\nthe drag handle.

\n\n

This may also be specified as a config object for the ComponentDragger which is\ninstantiated to perform dragging.

\n\n

For example to create a Component which may only be dragged around using a certain internal element as the drag\nhandle, use the delegate option:

\n\n
new Ext.Component({\n    constrain: true,\n    floating: true,\n    style: {\n        backgroundColor: '#fff',\n        border: '1px solid black'\n    },\n    html: '<h1 style=\"cursor:move\">The title</h1><p>The content</p>',\n    draggable: {\n        delegate: 'h1'\n    }\n}).show();\n
\n

Defaults to: false

Overrides: Ext.AbstractComponent.draggable

Ext.panel.Panel
view source
: Object/Object[]
Convenience config used for adding items to the bottom of the panel. ...

Convenience config used for adding items to the bottom of the panel. Short for Footer Bar.

\n\n
fbar: [\n  { type: 'button', text: 'Button 1' }\n]\n
\n\n

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'bottom',\n    ui: 'footer',\n    defaults: {minWidth: minButtonWidth},\n    items: [\n        { xtype: 'component', flex: 1 },\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n\n

The minButtonWidth is used as the default minWidth for\neach of the buttons in the fbar.

\n
Configure as true to have this Component fixed at its X, Y coordinates in the browser viewport, immune\nto scrolling t...

Configure as true to have this Component fixed at its X, Y coordinates in the browser viewport, immune\nto scrolling the document.

\n\n

Only in browsers that support position:fixed

\n\n

IE6 and IE7, 8 and 9 quirks do not support position: fixed

\n

Defaults to: false

Ext.panel.Panel
view source
: Boolean
Important: This config is only effective for collapsible Panels which are direct child items of a\nborder layout. ...

Important: This config is only effective for collapsible Panels which are direct child items of a\nborder layout.

\n\n

true to allow clicking a collapsed Panel's placeholder to display the Panel floated above the layout,\nfalse to force the user to fully expand a collapsed region by clicking the expand button to see it again.

\n

Defaults to: true

Specify as true to float the Component outside of the document flow using CSS absolute positioning. ...

Specify as true to float the Component outside of the document flow using CSS absolute positioning.

\n\n

Components such as Windows and Menus are floating by default.

\n\n

Floating Components that are programatically rendered will register\nthemselves with the global ZIndexManager

\n\n

Floating Components as child items of a Container

\n\n

A floating Component may be used as a child item of a Container. This just allows the floating Component to seek\na ZIndexManager by examining the ownerCt chain.

\n\n

When configured as floating, Components acquire, at render time, a ZIndexManager which\nmanages a stack of related floating Components. The ZIndexManager brings a single floating Component to the top\nof its stack when the Component's toFront method is called.

\n\n

The ZIndexManager is found by traversing up the ownerCt chain to find an ancestor which itself is\nfloating. This is so that descendant floating Components of floating Containers (Such as a ComboBox dropdown\nwithin a Window) can have its zIndex managed relative to any siblings, but always above that floating\nancestor Container.

\n\n

If no floating ancestor is found, a floating Component registers itself with the default ZIndexManager.

\n\n

Floating components do not participate in the Container's layout. Because of this, they are not rendered until\nyou explicitly show them.

\n\n

After rendering, the ownerCt reference is deleted, and the floatParent property is set to the found\nfloating ancestor Container. If no floating ancestor Container was found the floatParent property will\nnot be set.

\n

Defaults to: false

Overrides: Ext.AbstractComponent.floating

Specifies whether the floated component should be automatically focused when\nit is brought to the front. ...

Specifies whether the floated component should be automatically focused when\nit is brought to the front.

\n

Defaults to: true

When inside FormPanel, any component configured with formBind: true will\nbe enabled/disabled depending on the validit...

When inside FormPanel, any component configured with formBind: true will\nbe enabled/disabled depending on the validity state of the form.\nSee Ext.form.Panel for more information and example.

\n

Defaults to: false

Ext.panel.Panel
view source
: Boolean
True to apply a frame to the panel. ...

True to apply a frame to the panel.

\n

Defaults to: false

Overrides: Ext.AbstractComponent.frame

True to apply a frame to the panel panels header (if 'frame' is true). ...

True to apply a frame to the panel panels header (if 'frame' is true).

\n

Defaults to: true

Ext.panel.Panel
view source
: Number/String
A numeric unicode character code to use as the icon for the panel header. ...

A numeric unicode character code to use as the icon for the panel header. The\ndefault font-family for glyphs can be set globally using\nExt.setGlyphFontFamily(). Alternatively, this\nconfig option accepts a string with the charCode and font-family separated by the\n@ symbol. For example '65@My Font Family'.

\n
Pass as false to prevent a Header from being created and shown. ...

Pass as false to prevent a Header from being created and shown.

\n\n

Pass as a config object (optionally containing an xtype) to custom-configure this Panel's header.

\n\n

See Ext.panel.Header for all the options that may be specified here.

\n\n

A panel header is a Ext.container.Container which contains the Panel's title and tools.\nYou may also configure the Panel's header option with its own child items which go before the tools

\n\n

By default the panel title is inserted after items configured in this config, but before any tools.\nTo insert the title at any point in the full array, specify the #titlePosition config:

\n\n

new Ext.panel.Panel({

\n\n
   title: 'Test',\n   tools: [{\n       type: 'refresh\n   }, {\n       type: 'help'\n   }],\n   titlePosition: 2 // Title will come AFTER the two tools\n   ...\n
\n\n

});

\n

Optional CSS class to apply to the header element on mouseover

\n

Optional CSS class to apply to the header element on mouseover

\n
Specify as 'top', 'bottom', 'left' or 'right'. ...

Specify as 'top', 'bottom', 'left' or 'right'.

\n

Defaults to: 'top'

The height of this component in pixels.

\n

The height of this component in pixels.

\n
true to hide the component. ...

true to hide the component.

\n

Defaults to: false

Available since: 2.3.0

\n
true to hide the expand/collapse toggle button when collapsible == true, false to display it. ...

true to hide the expand/collapse toggle button when collapsible == true, false to display it.

\n

Defaults to: false

A String which specifies how this Component's encapsulating DOM element will be hidden. ...

A String which specifies how this Component's encapsulating DOM element will be hidden. Values may be:

\n\n
    \n
  • 'display' : The Component will be hidden using the display: none style.
  • \n
  • 'visibility' : The Component will be hidden using the visibility: hidden style.
  • \n
  • 'offsets' : The Component will be hidden by absolutely positioning it out of the visible area of the document.\nThis is useful when a hidden Component must maintain measurable dimensions. Hiding using display results in a\nComponent having zero dimensions.
  • \n
\n\n

Defaults to: 'display'

Available since: 1.1.0

\n
An HTML fragment, or a DomHelper specification to use as the layout element content. ...

An HTML fragment, or a DomHelper specification to use as the layout element content.\nThe HTML content is added after the component is rendered, so the document will not contain this HTML at the time\nthe render event is fired. This content is inserted into the body before any configured contentEl\nis appended.

\n

Defaults to: ''

Available since: 3.4.0

\n
Ext.panel.Panel
view source
: String
Path to image for an icon in the header. ...

Path to image for an icon in the header. Used for displaying an icon to the left of a title.

\n
Ext.panel.Panel
view source
: String
CSS class for an icon in the header. ...

CSS class for an icon in the header. Used for displaying an icon to the left of a title.

\n
The unique id of this component instance. ...

The unique id of this component instance.

\n\n

It should not be necessary to use this configuration except for singleton objects in your application. Components\ncreated with an id may be accessed globally using Ext.getCmp.

\n\n

Instead of using assigned ids, use the itemId config, and ComponentQuery\nwhich provides selector-based searching for Sencha Components analogous to DOM querying. The Container class contains shortcut methods to query\nits descendant Components by selector.

\n\n

Note that this id will also be used as the element id for the containing HTML element that is rendered to the\npage for this component. This allows you to write id-based CSS rules to style the specific instance of this\ncomponent uniquely, and also to select sub-elements using this component's id as the parent.

\n\n

Note: To avoid complications imposed by a unique id also see itemId.

\n\n

Note: To access the container of a Component see ownerCt.

\n\n

Defaults to an auto-assigned id.

\n

Available since: 1.1.0

\n
An itemId can be used as an alternative way to get a reference to a component when no object reference is\navailable. ...

An itemId can be used as an alternative way to get a reference to a component when no object reference is\navailable. Instead of using an id with Ext.getCmp, use itemId with\nExt.container.Container.getComponent which will retrieve\nitemId's or id's. Since itemId's are an index to the container's internal MixedCollection, the\nitemId is scoped locally to the container -- avoiding potential conflicts with Ext.ComponentManager\nwhich requires a unique id.

\n\n
var c = new Ext.panel.Panel({ //\n    height: 300,\n    renderTo: document.body,\n    layout: 'auto',\n    items: [\n        {\n            itemId: 'p1',\n            title: 'Panel 1',\n            height: 150\n        },\n        {\n            itemId: 'p2',\n            title: 'Panel 2',\n            height: 150\n        }\n    ]\n})\np1 = c.getComponent('p1'); // not the same as Ext.getCmp()\np2 = p1.ownerCt.getComponent('p2'); // reference via a sibling\n
\n\n

Also see id, Ext.container.Container.query, Ext.container.Container.down and\nExt.container.Container.child.

\n\n

Note: to access the container of an item see ownerCt.

\n

Available since: 3.4.0

\n
A single item, or an array of child Components to be added to this container\n\nUnless configured with a layout, a Cont...

A single item, or an array of child Components to be added to this container

\n\n

Unless configured with a layout, a Container simply renders child\nComponents serially into its encapsulating element and performs no sizing or\npositioning upon them.

\n\n

Example:

\n\n
// specifying a single item\nitems: {...},\nlayout: 'fit',    // The single items is sized to fit\n\n// specifying multiple items\nitems: [{...}, {...}],\nlayout: 'hbox', // The items are arranged horizontally\n
\n\n

Each item may be:

\n\n
    \n
  • A Component
  • \n
  • A Component configuration object
  • \n
\n\n\n

If a configuration object is specified, the actual type of Component to be\ninstantiated my be indicated by using the xtype option.

\n\n

Every Component class has its own xtype.

\n\n

If an xtype is not explicitly specified, the\ndefaultType for the Container is used, which by default is usually panel.

\n\n

Notes:

\n\n

Ext uses lazy rendering. Child Components will only be rendered\nshould it become necessary. Items are automatically laid out when they are first\nshown (no sizing is done while hidden), or in response to a doLayout call.

\n\n

Do not specify contentEl or\nhtml with items.

\n

Available since: 2.3.0

\n
Important: In order for child items to be correctly sized and\npositioned, typically a layout manager must be specifie...

Important: In order for child items to be correctly sized and\npositioned, typically a layout manager must be specified through\nthe layout configuration option.

\n\n

The sizing and positioning of child items is the responsibility of\nthe Container's layout manager which creates and manages the type of layout\nyou have in mind. For example:

\n\n

If the layout configuration is not explicitly specified for\na general purpose container (e.g. Container or Panel) the\ndefault layout manager will be used\nwhich does nothing but render child components sequentially into the\nContainer (no sizing or positioning will be performed in this situation).

\n\n

layout may be specified as either as an Object or as a String:

\n\n

Specify as an Object

\n\n

Example usage:

\n\n
layout: {\n    type: 'vbox',\n    align: 'left'\n}\n
\n\n
    \n
  • type

    \n\n

    The layout type to be used for this container. If not specified,\na default Ext.layout.container.Auto will be created and used.

    \n\n

    Valid layout type values are listed in Ext.enums.Layout.

  • \n
  • Layout specific configuration properties

    \n\n

    Additional layout specific configuration properties may also be\nspecified. For complete details regarding the valid config options for\neach layout type, see the layout class corresponding to the type\nspecified.

  • \n
\n\n\n

Specify as a String

\n\n

Example usage:

\n\n
layout: 'vbox'\n
\n\n
    \n
  • layout

    \n\n

    The layout type to be used for this container (see Ext.enums.Layout\nfor list of valid values).

    \n\n

    Additional layout specific configuration properties. For complete\ndetails regarding the valid config options for each layout type, see the\nlayout class corresponding to the layout specified.

  • \n
\n\n\n

Configuring the default layout type

\n\n

If a certain Container class has a default layout (For example a Toolbar\nwith a default Box layout), then to simply configure the default layout,\nuse an object, but without the type property:

\n\n
xtype: 'toolbar',\nlayout: {\n    pack: 'center'\n}\n
\n

Available since: 2.3.0

\n
Ext.panel.Panel
view source
: Object/Object[]
Convenience config. ...

Convenience config. Short for 'Left Bar' (left-docked, vertical toolbar).

\n\n
lbar: [\n  { xtype: 'button', text: 'Button 1' }\n]\n
\n\n

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'left',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n
A config object containing one or more event handlers to be added to this object during initialization. ...

A config object containing one or more event handlers to be added to this object during initialization. This\nshould be a valid listeners config object as specified in the addListener example for attaching multiple\nhandlers at once.

\n\n

DOM events from Ext JS Components

\n\n

While some Ext JS Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this is usually\nonly done when extra value can be added. For example the DataView's itemclick event passing the node clicked on. To access DOM events directly from a\nchild element of a Component, we need to specify the element option to identify the Component property to add a\nDOM listener to:

\n\n
new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n
\n
A configuration object or an instance of a Ext.ComponentLoader to load remote content\nfor this Component. ...

A configuration object or an instance of a Ext.ComponentLoader to load remote content\nfor this Component.

\n\n
Ext.create('Ext.Component', {\n    loader: {\n        url: 'content.html',\n        autoLoad: true\n    },\n    renderTo: Ext.getBody()\n});\n
\n
When true, the dock component layout writes\nheight information to the panel's DOM elements based on its shrink wrap h...

When true, the dock component layout writes\nheight information to the panel's DOM elements based on its shrink wrap height\ncalculation. This ensures that the browser respects the calculated height.\nWhen false, the dock component layout will not write heights on the panel or its\nbody element. In some simple layout cases, not writing the heights to the DOM may\nbe desired because this allows the browser to respond to direct DOM manipulations\n(like animations).

\n

Defaults to: true

Specifies the margin for this component. ...

Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or it can\nbe a CSS style specification for each style, for example: '10 5 3 10' (top, right, bottom, left).

\n
The maximum value in pixels which this Component will set its height to. ...

The maximum value in pixels which this Component will set its height to.

\n\n

Warning: This will override any size management applied by layout managers.

\n
The maximum value in pixels which this Component will set its width to. ...

The maximum value in pixels which this Component will set its width to.

\n\n

Warning: This will override any size management applied by layout managers.

\n
Minimum width of all footer toolbar buttons in pixels. ...

Minimum width of all footer toolbar buttons in pixels. If set, this will be used as the default\nvalue for the Ext.button.Button.minWidth config of each Button added to the footer toolbar via the\nfbar or buttons configurations. It will be ignored for buttons that have a minWidth configured\nsome other way, e.g. in their own config object or via the defaults of\ntheir parent container.

\n

Defaults to: 75

The minimum value in pixels which this Component will set its height to. ...

The minimum value in pixels which this Component will set its height to.

\n\n

Warning: This will override any size management applied by layout managers.

\n
The minimum value in pixels which this Component will set its width to. ...

The minimum value in pixels which this Component will set its width to.

\n\n

Warning: This will override any size management applied by layout managers.

\n
An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element,\nand...

An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element,\nand removed when the mouse moves out. This can be useful for adding customized 'active' or 'hover' styles to the\ncomponent or any of its children using standard CSS rules.

\n

Defaults to: ''

Available since: 2.3.0

\n
Possible values are:\n * 'auto' to enable automatic horizontal scrollbar (overflow-x: 'auto'). ...

Possible values are:\n * 'auto' to enable automatic horizontal scrollbar (overflow-x: 'auto').\n * 'scroll' to always enable horizontal scrollbar (overflow-x: 'scroll').\nThe default is overflow-x: 'hidden'. This should not be combined with autoScroll.

\n
Possible values are:\n * 'auto' to enable automatic vertical scrollbar (overflow-y: 'auto'). ...

Possible values are:\n * 'auto' to enable automatic vertical scrollbar (overflow-y: 'auto').\n * 'scroll' to always enable vertical scrollbar (overflow-y: 'scroll').\nThe default is overflow-y: 'hidden'. This should not be combined with autoScroll.

\n
True to overlap the header in a panel over the framing of the panel itself. ...

True to overlap the header in a panel over the framing of the panel itself. This is needed when frame:true (and\nis done automatically for you). Otherwise it is undefined. If you manually add rounded corners to a panel header\nwhich does not have frame:true, this will need to be set to true.

\n
Specifies the padding for this component. ...

Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or it\ncan be a CSS style specification for each style, for example: '10 5 3 10' (top, right, bottom, left).

\n
Important: This config is only effective for collapsible Panels which are direct child items of a\nborder layout when ...

Important: This config is only effective for collapsible Panels which are direct child items of a\nborder layout when not using the 'header' collapseMode.

\n\n

Optional. A Component (or config object for a Component) to show in place of this Panel when this Panel is\ncollapsed by a border layout. Defaults to a generated Header containing a Tool to re-expand the Panel.

\n

The mode for hiding collapsed panels when\nusing collapseMode \"placeholder\".

\n

The mode for hiding collapsed panels when\nusing collapseMode \"placeholder\".

\n
An array of plugins to be added to this component. ...

An array of plugins to be added to this component. Can also be just a single plugin instead of array.

\n\n

Plugins provide custom functionality for a component. The only requirement for\na valid plugin is that it contain an init method that accepts a reference of type Ext.Component. When a component\nis created, if any plugins are available, the component will call the init method on each plugin, passing a\nreference to itself. Each plugin can then call methods or respond to events on the component as needed to provide\nits functionality.

\n\n

Plugins can be added to component by either directly referencing the plugin instance:

\n\n
plugins: [Ext.create('Ext.grid.plugin.CellEditing', {clicksToEdit: 1})],\n
\n\n

By using config object with ptype:

\n\n
plugins: [{ptype: 'cellediting', clicksToEdit: 1}],\n
\n\n

Or with just a ptype:

\n\n
plugins: ['cellediting', 'gridviewdragdrop'],\n
\n\n

See Ext.enums.Plugin for list of all ptypes.

\n

Available since: 2.3.0

\n
Ext.panel.Panel
view source
: Booleandeprecated
...
\n

Defaults to: false

\n

This cfg has been deprecated

\n

4.1.0 Use header instead.\nPrevent a Header from being created and shown.

\n\n
\n
Ext.panel.Panel
view source
: Object/Object[]
Convenience config. ...

Convenience config. Short for 'Right Bar' (right-docked, vertical toolbar).

\n\n
rbar: [\n  { xtype: 'button', text: 'Button 1' }\n]\n
\n\n

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'right',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n
: \"north\"/\"south\"/\"east\"/\"west\"/\"center\"
Defines the region inside border layout. ...

Defines the region inside border layout.

\n\n

Possible values:

\n\n
    \n
  • north - Positions component at top.
  • \n
  • south - Positions component at bottom.
  • \n
  • east - Positions component at right.
  • \n
  • west - Positions component at left.
  • \n
  • center - Positions component at the remaining space.\nThere must be a component with region: \"center\" in every border layout.
  • \n
\n\n
The data used by renderTpl in addition to the following property values of the component:\n\n\nid\nui\nuiCls\nbaseCls\ncompo...

The data used by renderTpl in addition to the following property values of the component:

\n\n
    \n
  • id
  • \n
  • ui
  • \n
  • uiCls
  • \n
  • baseCls
  • \n
  • componentCls
  • \n
  • frame
  • \n
\n\n\n

See renderSelectors and childEls for usage examples.

\n
An object containing properties specifying DomQuery selectors which identify child elements\ncreated by the render pro...

An object containing properties specifying DomQuery selectors which identify child elements\ncreated by the render process.

\n\n

After the Component's internal structure is rendered according to the renderTpl, this object is iterated through,\nand the found Elements are added as properties to the Component using the renderSelector property name.

\n\n

For example, a Component which renders a title and description into its element:

\n\n
Ext.create('Ext.Component', {\n    renderTo: Ext.getBody(),\n    renderTpl: [\n        '<h1 class=\"title\">{title}</h1>',\n        '<p>{desc}</p>'\n    ],\n    renderData: {\n        title: \"Error\",\n        desc: \"Something went wrong\"\n    },\n    renderSelectors: {\n        titleEl: 'h1.title',\n        descEl: 'p'\n    },\n    listeners: {\n        afterrender: function(cmp){\n            // After rendering the component will have a titleEl and descEl properties\n            cmp.titleEl.setStyle({color: \"red\"});\n        }\n    }\n});\n
\n\n

For a faster, but less flexible, alternative that achieves the same end result (properties for child elements on the\nComponent after render), see childEls and addChildEls.

\n
Specify the id of the element, a DOM element or an existing Element that this component will be rendered into. ...

Specify the id of the element, a DOM element or an existing Element that this component will be rendered into.

\n\n

Notes:

\n\n

Do not use this option if the Component is to be a child item of a Container.\nIt is the responsibility of the Container's\nlayout manager to render and manage its child items.

\n\n

When using this config, a call to render() is not required.

\n\n

See also: render.

\n

Available since: 2.3.0

\n
An XTemplate used to create the internal structure inside this Component's encapsulating\nElement. ...

An XTemplate used to create the internal structure inside this Component's encapsulating\nElement.

\n\n

You do not normally need to specify this. For the base classes Ext.Component and\nExt.container.Container, this defaults to null which means that they will be initially rendered\nwith no internal structure; they render their Element empty. The more specialized Ext JS and Sencha Touch\nclasses which use a more complex DOM structure, provide their own template definitions.

\n\n

This is intended to allow the developer to create application-specific utility Components with customized\ninternal structure.

\n\n

Upon rendering, any created child elements may be automatically imported into object properties using the\nrenderSelectors and childEls options.

\n

Overrides: Ext.container.AbstractContainer.renderTpl

Specify as true to apply a Resizer to this Component after rendering. ...

Specify as true to apply a Resizer to this Component after rendering.

\n\n

May also be specified as a config object to be passed to the constructor of Resizer\nto override any defaults. By default the Component passes its minimum and maximum size, and uses\nExt.resizer.Resizer.dynamic: false

\n
A valid Ext.resizer.Resizer handles config string. ...

A valid Ext.resizer.Resizer handles config string. Only applies when resizable = true.

\n

Defaults to: 'all'

True to layout this component and its descendants in \"rtl\" (right-to-left) mode. ...

True to layout this component and its descendants in \"rtl\" (right-to-left) mode.\nCan be explicitly set to false to override a true value inherited from an ancestor.

\n\n

Defined in override Ext.rtl.AbstractComponent.

\n
A buffer to be applied if many state events are fired within a short period. ...

A buffer to be applied if many state events are fired within a short period.

\n

Defaults to: 100

Specifies whether the floating component should be given a shadow. ...

Specifies whether the floating component should be given a shadow. Set to true to automatically create an\nExt.Shadow, or a string indicating the shadow's display Ext.Shadow.mode. Set to false to\ndisable the shadow.

\n

Defaults to: 'sides'

Number of pixels to offset the shadow.

\n

Number of pixels to offset the shadow.

\n
If this property is a number, it is interpreted as follows:\n\n\n0: Neither width nor height depend on content. ...

If this property is a number, it is interpreted as follows:

\n\n
    \n
  • 0: Neither width nor height depend on content. This is equivalent to false.
  • \n
  • 1: Width depends on content (shrink wraps), but height does not.
  • \n
  • 2: Height depends on content (shrink wraps), but width does not. The default.
  • \n
  • 3: Both width and height depend on content (shrink wrap). This is equivalent to true.
  • \n
\n\n\n

In CSS terms, shrink-wrap width is analogous to an inline-block element as opposed\nto a block-level element. Some container layouts always shrink-wrap their children,\neffectively ignoring this property (e.g., Ext.layout.container.HBox,\nExt.layout.container.VBox, Ext.layout.component.Dock).

\n

Defaults to: 2

Allows for this panel to include the dockedItems when trying to determine the overall\nsize of the panel. ...

Allows for this panel to include the dockedItems when trying to determine the overall\nsize of the panel. This option is only applicable when this panel is also shrink wrapping in the\nsame dimensions. See Ext.AbstractComponent.shrinkWrap for an explanation of the configuration options.

\n

Defaults to: false

When draggable is true, Specify this as true to cause the draggable config\nto work the same as it does in Window. ...

When draggable is true, Specify this as true to cause the draggable config\nto work the same as it does in Window. This Panel\njust becomes movable. No DragDrop instances receive any notifications.\nFor example:

\n\n
var win = Ext.create('widget.window', {\n    height: 300,\n    width: 300,\n    title: 'Constraining Window',\n    closable: false,\n    items: {\n        title: \"Floating Panel\",\n        width: 100,\n        height: 100,\n        floating: true,\n        draggable: true,\n        constrain: true,\n        simpleDrag: true\n    }\n});\nwin.show();\n// Floating components begin life hidden\nwin.child('[title=Floating Panel]').show();\n
\n

Defaults to: false

An array of events that, when fired, should trigger this object to\nsave its state. ...

An array of events that, when fired, should trigger this object to\nsave its state. Defaults to none. stateEvents may be any type\nof event supported by this object, including browser or custom events\n(e.g., ['click', 'customerchange']).

\n\n\n

See stateful for an explanation of saving and\nrestoring object state.

\n\n
The unique id for this object to use for state management purposes. ...

The unique id for this object to use for state management purposes.

\n\n

See stateful for an explanation of saving and restoring state.

\n\n
A flag which causes the object to attempt to restore the state of\ninternal properties from a saved state on startup. ...

A flag which causes the object to attempt to restore the state of\ninternal properties from a saved state on startup. The object must have\na stateId for state to be managed.

\n\n

Auto-generated ids are not guaranteed to be stable across page loads and\ncannot be relied upon to save and restore the same state for a object.

\n\n

For state saving to work, the state manager's provider must have been\nset to an implementation of Ext.state.Provider which overrides the\nset and get\nmethods to save and recall name/value pairs. A built-in implementation,\nExt.state.CookieProvider is available.

\n\n

To set the state provider for the current page:

\n\n

Ext.state.Manager.setProvider(new Ext.state.CookieProvider({

\n\n
   expires: new Date(new Date().getTime()+(1000*60*60*24*7)), //7 days from now\n
\n\n

}));

\n\n

A stateful object attempts to save state when one of the events\nlisted in the stateEvents configuration fires.

\n\n

To save state, a stateful object first serializes its state by\ncalling getState.

\n\n

The Component base class implements getState to save its width and height within the state\nonly if they were initially configured, and have changed from the configured value.

\n\n

The Panel class saves its collapsed state in addition to that.

\n\n

The Grid class saves its column state in addition to its superclass state.

\n\n

If there is more application state to be save, the developer must provide an implementation which\nfirst calls the superclass method to inherit the above behaviour, and then injects new properties\ninto the returned object.

\n\n

The value yielded by getState is passed to Ext.state.Manager.set\nwhich uses the configured Ext.state.Provider to save the object\nkeyed by the stateId.

\n\n

During construction, a stateful object attempts to restore its state by calling\nExt.state.Manager.get passing the stateId

\n\n

The resulting object is passed to applyState*. The default implementation of\napplyState simply copies properties into the object, but a developer may\noverride this to support restoration of more complex application state.

\n\n

You can perform extra processing on state save and restore by attaching\nhandlers to the beforestaterestore, staterestore,\nbeforestatesave and statesave events.

\n

Defaults to: false

A custom style specification to be applied to this component's Element. ...

A custom style specification to be applied to this component's Element. Should be a valid argument to\nExt.Element.applyStyles.

\n\n
new Ext.panel.Panel({\n    title: 'Some Title',\n    renderTo: Ext.getBody(),\n    width: 400, height: 300,\n    layout: 'form',\n    items: [{\n        xtype: 'textarea',\n        style: {\n            width: '95%',\n            marginBottom: '10px'\n        }\n    },\n    new Ext.button.Button({\n        text: 'Send',\n        minWidth: '100',\n        style: {\n            marginBottom: '10px'\n        }\n    })\n    ]\n});\n
\n

Available since: 1.1.0

\n
If true, suspend calls to doLayout. ...

If true, suspend calls to doLayout. Useful when batching multiple adds to a container\nand not passing them as multiple arguments or an array.

\n

Defaults to: false

Ext.panel.Panel
view source
: Object/Object[]
Convenience config. ...

Convenience config. Short for 'Top Bar'.

\n\n
tbar: [\n  { xtype: 'button', text: 'Button 1' }\n]\n
\n\n

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'top',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n
Ext.panel.Panel
view source
: String
The title text to be used to display in the panel header. ...

The title text to be used to display in the panel header. When a\ntitle is specified the Ext.panel.Header will automatically be created and displayed unless\nheader is set to false.

\n

Defaults to: ''

Ext.panel.Panel
view source
: String
The alignment of the title text within the available space between the\nicon and the tools. ...

The alignment of the title text within the available space between the\nicon and the tools.

\n\n

May be \"left\", \"right\" or \"center\". Defaults to the browser's natural\nbehavior depending on the css direction property - \"left\" when direction\nis ltr and \"right\" when direction is rtl\n(see Ext.AbstractComponent.rtl).

\n
true to allow expanding and collapsing the panel (when collapsible = true) by clicking anywhere in\nthe header bar, fa...

true to allow expanding and collapsing the panel (when collapsible = true) by clicking anywhere in\nthe header bar, false) to allow it only by clicking to tool button). When a panel is used in a\nborder layout, the floatable option can influence the behavior of collapsing.

\n
True to automatically call toFront when the show method is called on an already visible,\nfloating component. ...

True to automatically call toFront when the show method is called on an already visible,\nfloating component.

\n

Defaults to: true

An array of Ext.panel.Tool configs/instances to be added to the header tool area. ...

An array of Ext.panel.Tool configs/instances to be added to the header tool area. The tools are stored as\nchild components of the header container. They can be accessed using down and {query}, as well as the\nother component methods. The toggle tool is automatically created if collapsible is set to true.

\n\n

Note that, apart from the toggle tool which is provided when a panel is collapsible, these tools only provide the\nvisual button. Any required functionality must be provided by adding handlers that implement the necessary\nbehavior.

\n\n

Example usage:

\n\n
tools:[{\n    type:'refresh',\n    tooltip: 'Refresh form Data',\n    // hidden:true,\n    handler: function(event, toolEl, panelHeader) {\n        // refresh logic\n    }\n},\n{\n    type:'help',\n    tooltip: 'Get Help',\n    callback: function(panel, tool, event) {\n        // show help here\n    }\n}]\n
\n\n

The difference between handler and callback is the signature. For details on\nthe distinction, see Ext.panel.Tool.

\n
An Ext.Template, Ext.XTemplate or an array of strings to form an Ext.XTemplate. ...

An Ext.Template, Ext.XTemplate or an array of strings to form an Ext.XTemplate. Used in\nconjunction with the data and tplWriteMode configurations.

\n

Available since: 3.4.0

\n
The Ext.(X)Template method to use when updating the content area of the Component. ...

The Ext.(X)Template method to use when updating the content area of the Component.\nSee Ext.XTemplate.overwrite for information on default mode.

\n

Defaults to: 'overwrite'

Available since: 3.4.0

\n
A UI style for a component. ...

A UI style for a component.

\n

Defaults to: 'default'

An array of of classNames which are currently applied to this component. ...

An array of of classNames which are currently applied to this component.

\n

Defaults to: []

The width of this component in pixels.

\n

The width of this component in pixels.

\n
This property provides a shorter alternative to creating objects than using a full\nclass name. ...

This property provides a shorter alternative to creating objects than using a full\nclass name. Using xtype is the most common way to define component instances,\nespecially in a container. For example, the items in a form containing text fields\ncould be created explicitly like so:

\n\n
 items: [\n     Ext.create('Ext.form.field.Text', {\n         fieldLabel: 'Foo'\n     }),\n     Ext.create('Ext.form.field.Text', {\n         fieldLabel: 'Bar'\n     }),\n     Ext.create('Ext.form.field.Number', {\n         fieldLabel: 'Num'\n     })\n ]\n
\n\n

But by using xtype, the above becomes:

\n\n
 items: [\n     {\n         xtype: 'textfield',\n         fieldLabel: 'Foo'\n     },\n     {\n         xtype: 'textfield',\n         fieldLabel: 'Bar'\n     },\n     {\n         xtype: 'numberfield',\n         fieldLabel: 'Num'\n     }\n ]\n
\n\n

When the xtype is common to many items, Ext.container.AbstractContainer.defaultType\nis another way to specify the xtype for all items that don't have an explicit xtype:

\n\n
 defaultType: 'textfield',\n items: [\n     { fieldLabel: 'Foo' },\n     { fieldLabel: 'Bar' },\n     { fieldLabel: 'Num', xtype: 'numberfield' }\n ]\n
\n\n

Each member of the items array is now just a \"configuration object\". These objects\nare used to create and configure component instances. A configuration object can be\nmanually used to instantiate a component using Ext.widget:

\n\n
 var text1 = Ext.create('Ext.form.field.Text', {\n     fieldLabel: 'Foo'\n });\n\n // or alternatively:\n\n var text1 = Ext.widget({\n     xtype: 'textfield',\n     fieldLabel: 'Foo'\n });\n
\n\n

This conversion of configuration objects into instantiated components is done when\na container is created as part of its {Ext.container.AbstractContainer.initComponent}\nprocess. As part of the same process, the items array is converted from its raw\narray form into a Ext.util.MixedCollection instance.

\n\n

You can define your own xtype on a custom component by specifying\nthe xtype property in Ext.define. For example:

\n\n
Ext.define('MyApp.PressMeButton', {\n    extend: 'Ext.button.Button',\n    xtype: 'pressmebutton',\n    text: 'Press Me'\n});\n
\n\n

Care should be taken when naming an xtype in a custom component because there is\na single, shared scope for all xtypes. Third part components should consider using\na prefix to avoid collisions.

\n\n
Ext.define('Foo.form.CoolButton', {\n    extend: 'Ext.button.Button',\n    xtype: 'ux-coolbutton',\n    text: 'Cool!'\n});\n
\n\n

See Ext.enums.Widget for list of all available xtypes.

\n

Available since: 2.3.0

\n

Properties

Defined By

Instance Properties

...
\n

Defaults to: 'Ext.Base'

...
\n

Defaults to: /^([a-z]+)-([a-z]+)(\\?)?$/

Setting this property to true causes the isLayoutRoot method to return\ntrue and stop the search for the top-most comp...

Setting this property to true causes the isLayoutRoot method to return\ntrue and stop the search for the top-most component for a layout.

\n

Defaults to: false

...
\n

Defaults to: ['position', 'top', 'left']

true indicates an id was auto-generated rather than provided by configuration. ...

true indicates an id was auto-generated rather than provided by configuration.

\n

Defaults to: false

The Panel's body Element which may be used to contain HTML content. ...

The Panel's body Element which may be used to contain HTML content.\nThe content may be specified in the html config, or it may be loaded using the\nloader config. Read-only.

\n\n

If this is used to load visible HTML elements in either way, then\nthe Panel may not be used as a Layout for hosting nested Panels.

\n\n

If this Panel is intended to be used as the host of a Layout (See layout\nthen the body Element must not be loaded or changed - it is under the control\nof the Panel's Layout.

\n
...
\n

Defaults to: {x: 'x', y: 'y'}

private ...

private

\n

Defaults to: Ext.baseCSSPrefix + 'border-box'

...
\n

Defaults to: []

The number of component layout calls made on this object. ...

The number of component layout calls made on this object.

\n

Defaults to: 0

...
\n

Defaults to: {}

The name of the padding property that is used by the layout to manage\npadding. ...

The name of the padding property that is used by the layout to manage\npadding. See managePadding

\n

Defaults to: 'bodyPadding'

Overrides: Ext.AbstractComponent.contentPaddingProperty

By default this method does nothing but return the position spec passed to it. ...

By default this method does nothing but return the position spec passed to it. In\nrtl mode it is overridden to convert \"l\" to \"r\" and vice versa when required.

\n
Only present if this Panel has been configured with draggable true. ...

Only present if this Panel has been configured with draggable true.

\n\n

Simple dragging

\n\n

If this Panel is configured simpleDrag true (the default is false), this property\nwill reference an instance of Ext.util.ComponentDragger (A subclass of\nDragTracker) which handles moving the Panel's DOM Element,\nand constraining according to the constrain and constrainHeader .

\n\n

This object fires various events during its lifecycle and during a drag operation.

\n\n

Complex dragging interacting with other DragDrop instances

\n\n

By default, this property in a draggable Panel will contain an instance of Ext.dd.DragSource which handles dragging the Panel.

\n\n

The developer must provide implementations of the abstract methods of Ext.dd.DragSource in order to\nsupply behaviour for each stage of the drag/drop process. See draggable.

\n
...
\n

Defaults to: 'autocomponent'

Values to decide which side of the body element docked items must go\nThis overides any weight. ...

Values to decide which side of the body element docked items must go\nThis overides any weight. A left/top will always sort before a right/bottom\nregardless of any weight value. Weights sort at either side of the \"body\" dividing point.

\n
Indicates whether or not the component can be dragged. ...

Indicates whether or not the component can be dragged.

\n

Defaults to: false

Initial suspended call count. ...

Initial suspended call count. Incremented when suspendEvents is called, decremented when resumeEvents is called.

\n

Defaults to: 0

Only present for floating Components which were inserted as child items of Containers. ...

Only present for floating Components which were inserted as child items of Containers.

\n\n

There are other similar relationships such as the button which activates a menu, or the\nmenu item which activated a submenu, or the\ncolumn header which activated the column menu.

\n\n

These differences are abstracted away by the up method.

\n\n

Floating Components that are programatically rendered will not have a floatParent\nproperty.

\n\n

See floating and zIndexManager

\n
...
\n

Defaults to: Ext.baseCSSPrefix + 'frame'

...
\n

Defaults to: ['TL', 'TC', 'TR', 'ML', 'MC', 'MR', 'BL', 'BC', 'BR']

...
\n

Defaults to: ['tl', 'tc', 'tr', 'ml', 'mc', 'mr', 'bl', 'bc', 'br']

...
\n

Defaults to: /[\\-]frame\\d+[TMB][LCR]$/

Cache the frame information object so as not to cause style recalculations ...

Cache the frame information object so as not to cause style recalculations

\n

Defaults to: {}

Indicates the width of any framing elements which were added within the encapsulating\nelement to provide graphical, r...

Indicates the width of any framing elements which were added within the encapsulating\nelement to provide graphical, rounded borders. See the frame config. This\nproperty is null if the component is not framed.

\n\n

This is an object containing the frame width in pixels for all four sides of the\nComponent containing the following properties:

\n
  • top : Number (optional)

    The width of the top framing element in pixels.

    \n

    Defaults to: 0

  • right : Number (optional)

    The width of the right framing element in pixels.

    \n

    Defaults to: 0

  • bottom : Number (optional)

    The width of the bottom framing element in pixels.

    \n

    Defaults to: 0

  • left : Number (optional)

    The width of the left framing element in pixels.

    \n

    Defaults to: 0

  • width : Number (optional)

    The total width of the left and right framing elements in pixels.

    \n

    Defaults to: 0

  • height : Number (optional)

    The total height of the top and right bottom elements in pixels.

    \n

    Defaults to: 0

...
\n

Defaults to: ['{%this.renderDockedItems(out,values,0);%}', '<tpl if="top">', '<tpl if="left"><div id="{fgid}TL" class="{frameCls}-tl {baseCls}-tl {baseCls}-{ui}-tl<tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-tl</tpl>{frameElCls}" role="presentation"></tpl>', '<tpl if="right"><div id="{fgid}TR" class="{frameCls}-tr {baseCls}-tr {baseCls}-{ui}-tr<tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-tr</tpl>{frameElCls}" role="presentation"></tpl>', '<div id="{fgid}TC" class="{frameCls}-tc {baseCls}-tc {baseCls}-{ui}-tc<tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-tc</tpl>{frameElCls}" role="presentation"></div>', '<tpl if="right"></div></tpl>', '<tpl if="left"></div></tpl>', '</tpl>', '<tpl if="left"><div id="{fgid}ML" class="{frameCls}-ml {baseCls}-ml {baseCls}-{ui}-ml<tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-ml</tpl>{frameElCls}" role="presentation"></tpl>', '<tpl if="right"><div id="{fgid}MR" class="{frameCls}-mr {baseCls}-mr {baseCls}-{ui}-mr<tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-mr</tpl>{frameElCls}" role="presentation"></tpl>', '<div id="{fgid}MC" class="{frameCls}-mc {baseCls}-mc {baseCls}-{ui}-mc<tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-mc</tpl>{frameElCls}" role="presentation">', '{%this.applyRenderTpl(out, values)%}', '</div>', '<tpl if="right"></div></tpl>', '<tpl if="left"></div></tpl>', '<tpl if="bottom">', '<tpl if="left"><div id="{fgid}BL" class="{frameCls}-bl {baseCls}-bl {baseCls}-{ui}-bl<tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-bl</tpl>{frameElCls}" role="presentation"></tpl>', '<tpl if="right"><div id="{fgid}BR" class="{frameCls}-br {baseCls}-br {baseCls}-{ui}-br<tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-br</tpl>{frameElCls}" role="presentation"></tpl>', '<div id="{fgid}BC" class="{frameCls}-bc {baseCls}-bc {baseCls}-{ui}-bc<tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-bc</tpl>{frameElCls}" role="presentation"></div>', '<tpl if="right"></div></tpl>', '<tpl if="left"></div></tpl>', '</tpl>', '{%this.renderDockedItems(out,values,1);%}']

This object holds a key for any event that has a listener. ...

This object holds a key for any event that has a listener. The listener may be set\ndirectly on the instance, or on its class or a super class (via observe) or\non the MVC EventBus. The values of this object are truthy\n(a non-zero number) and falsy (0 or undefined). They do not represent an exact count\nof listeners. The value for an event is truthy if the event must be fired and is\nfalsy if there is no need to fire the event.

\n\n

The intended use of this property is to avoid the expense of fireEvent calls when\nthere are no listeners. This can be particularly helpful when one would otherwise\nhave to call fireEvent hundreds or thousands of times. It is used like this:

\n\n
 if (this.hasListeners.foo) {\n     this.fireEvent('foo', this, arg1);\n }\n
\n
Number of dock 'left' and 'right' items. ...

Number of dock 'left' and 'right' items.

\n

Defaults to: 0

...
\n

Defaults to: []

...
\n

Defaults to: {}

...
\n

Defaults to: true

true in this class to identify an object as an instantiated Component, or subclass thereof. ...

true in this class to identify an object as an instantiated Component, or subclass thereof.

\n

Defaults to: true

true in this class to identify an object as an instantiated Container, or subclass thereof. ...

true in this class to identify an object as an instantiated Container, or subclass thereof.

\n

Defaults to: true

End Definitions ...

End Definitions

\n

Defaults to: true

...
\n

Defaults to: true

true in this class to identify an object as an instantiated Observable, or subclass thereof. ...

true in this class to identify an object as an instantiated Observable, or subclass thereof.

\n

Defaults to: true

true in this class to identify an object as an instantiated Panel, or subclass thereof. ...

true in this class to identify an object as an instantiated Panel, or subclass thereof.

\n

Defaults to: true

...
\n

Defaults to: true

The MixedCollection containing all the child items of this container.

\n

The MixedCollection containing all the child items of this container.

\n

Available since: 2.3.0

\n
The number of container layout calls made on this object. ...

The number of container layout calls made on this object.

\n

Defaults to: 0

This is an internal flag that you use when creating custom components. ...

This is an internal flag that you use when creating custom components. By default this is set to true which means\nthat every component gets a mask when it's disabled. Components like FieldContainer, FieldSet, Field, Button, Tab\noverride this property to false since they want to implement custom disable logic.

\n

Defaults to: true

...
\n

Defaults to: Ext.baseCSSPrefix + 'hide-offsets'

This Component's owner Container (is set automatically\nwhen this Component is added to a Container). ...

This Component's owner Container (is set automatically\nwhen this Component is added to a Container).

\n\n

Important. This is not a universal upwards navigation pointer. It indicates the Container which owns and manages\nthis Component if any. There are other similar relationships such as the button which activates a menu, or the\nmenu item which activated a submenu, or the\ncolumn header which activated the column menu.

\n\n

These differences are abstracted away by the up method.

\n\n

Note: to access items within the Container see itemId.

\n

Available since: 2.3.0

\n
Indicates whether or not the component has been rendered. ...

Indicates whether or not the component has been rendered.

\n

Defaults to: false

Available since: 1.1.0

\n
An object property which provides unified information as to which dimensions are scrollable based upon\nthe autoScroll...

An object property which provides unified information as to which dimensions are scrollable based upon\nthe autoScroll, overflowX and overflowY settings (And for views of trees and grids, the owning panel's scroll setting).

\n\n

Note that if you set overflow styles using the style config or bodyStyle config, this object does not include that information;\nit is best to use autoScroll, overflowX and overflowY if you need to access these flags.

\n\n

This object has the following properties:

\n
  • x : Boolean

    true if this Component is scrollable horizontally - style setting may be 'auto' or 'scroll'.

    \n
  • y : Boolean

    true if this Component is scrollable vertically - style setting may be 'auto' or 'scroll'.

    \n
  • both : Boolean

    true if this Component is scrollable both horizontally and vertically.

    \n
  • overflowX : String

    The overflow-x style setting, 'auto' or 'scroll' or ''.

    \n
  • overflowY : String

    The overflow-y style setting, 'auto' or 'scroll' or ''.

    \n
Get the reference to the current class from which this object was instantiated. ...

Get the reference to the current class from which this object was instantiated. Unlike statics,\nthis.self is scope-dependent and it's meant to be used for dynamic inheritance. See statics\nfor a detailed comparison

\n\n
Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); // dependent on 'this'\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n
\n
Only present for floating Components after they have been rendered. ...

Only present for floating Components after they have been rendered.

\n\n

A reference to the ZIndexManager which is managing this Component's z-index.

\n\n

The ZIndexManager maintains a stack of floating Component z-indices, and also provides\na single modal mask which is insert just beneath the topmost visible modal floating Component.

\n\n

Floating Components may be brought to the front or sent to the back of the\nz-index stack.

\n\n

This defaults to the global ZIndexManager for floating Components that are\nprogramatically rendered.

\n\n

For floating Components which are added to a Container, the ZIndexManager is acquired from the first\nancestor Container found which is floating. If no floating ancestor is found, the global ZIndexManager is\nused.

\n\n

See floating and zIndexParent

\n
Only present for floating Components which were inserted as child items of Containers, and which have a floating\nCont...

Only present for floating Components which were inserted as child items of Containers, and which have a floating\nContainer in their containment ancestry.

\n\n

For floating Components which are child items of a Container, the zIndexParent will be a floating\nancestor Container which is responsible for the base z-index value of all its floating descendants. It provides\na ZIndexManager which provides z-indexing services for all its descendant floating\nComponents.

\n\n

Floating Components that are programatically rendered will not have a zIndexParent\nproperty.

\n\n

For example, the dropdown BoundList of a ComboBox which is in a Window will have the\nWindow as its zIndexParent, and will always show above that Window, wherever the Window is placed in the z-index stack.

\n\n

See floating and zIndexManager

\n
Defined By

Static Properties

...
\n

Defaults to: []

Methods

Defined By

Instance Methods

Creates new Component. ...

Creates new Component.

\n

Parameters

  • config : Ext.Element/String/Object

    The configuration options may be specified as either:

    \n\n\n\n\n
      \n
    • an element : it is set as the internal element and its id used as the component id
    • \n
    • a string : it is assumed to be the id of an existing element and is used as the component id
    • \n
    • anything else : it is assumed to be a standard config object and is applied to the component
    • \n
    \n\n\n\n

Returns

Overrides: Ext.AbstractComponent.constructor

Adds Component(s) to this Container. ...

Adds Component(s) to this Container.

\n\n

Description:

\n\n\n\n\n

Notes:

\n\n

If the Container is already rendered when add\nis called, it will render the newly added Component into its content area.

\n\n

If the Container was configured with a size-managing layout manager,\nthe Container will recalculate its internal layout at this time too.

\n\n

Note that the default layout manager simply renders child Components sequentially\ninto the content area and thereafter performs no sizing.

\n\n

If adding multiple new child Components, pass them as an array to the add method,\nso that only one layout recalculation is performed.

\n\n
tb = new Ext.toolbar.Toolbar({\n    renderTo: document.body\n});  // toolbar is rendered\n// add multiple items.\n// (defaultType for Toolbar is 'button')\ntb.add([{text:'Button 1'}, {text:'Button 2'}]);\n
\n\n

To inject components between existing ones, use the insert method.

\n\n

Warning:

\n\n

Components directly managed by the BorderLayout layout manager may not be removed\nor added. See the Notes for BorderLayout for\nmore details.

\n

Available since: 2.3.0

\n

Parameters

Returns

Adds a CSS class to the body element. ...

Adds a CSS class to the body element. If not rendered, the class will\nbe added when the panel is rendered.

\n

Parameters

  • cls : String

    The class to add

    \n

Returns

Adds each argument passed to this method to the childEls array. ...

Adds each argument passed to this method to the childEls array.

\n
Adds a CSS class to the top level element representing this component. ...

Adds a CSS class to the top level element representing this component.

\n
\n

This method has been deprecated since 4.1

\n

Use addCls instead.

\n\n
\n

Available since: 2.3.0

\n

Parameters

Returns

Adds a CSS class to the top level element representing this component. ...

Adds a CSS class to the top level element representing this component.

\n

Parameters

Returns

Adds a cls to the uiCls array, which will also call addUIClsToElement and adds to all elements of this\ncomponent. ...

Adds a cls to the uiCls array, which will also call addUIClsToElement and adds to all elements of this\ncomponent.

\n

Parameters

  • classes : String/String[]

    A string or an array of strings to add to the uiCls.

    \n
  • skip : Object

    (Boolean) skip true to skip adding it to the class and do it later (via the return).

    \n
Adds docked item(s) to the container. ...

Adds docked item(s) to the container.

\n

Parameters

  • component : Object/Object[]

    The Component or array of components to add. The components\nmust include a 'dock' parameter on each component to indicate where it should be docked\n('top', 'right', 'bottom', 'left').

    \n
  • pos : Number (optional)

    The index at which the Component will be added

    \n

Returns

Adds the specified events to the list of events which this Observable may fire. ...

Adds the specified events to the list of events which this Observable may fire.

\n

Parameters

  • eventNames : Object/String...

    Either an object with event names as properties with\na value of true. For example:

    \n\n
    this.addEvents({\n    storeloaded: true,\n    storecleared: true\n});\n
    \n\n

    Or any number of event names as separate parameters. For example:

    \n\n
    this.addEvents('storeloaded', 'storecleared');\n
    \n
Sets up the focus listener on this Component's focusEl if it has one. ...

Sets up the focus listener on this Component's focusEl if it has one.

\n\n

Form Components which must implicitly participate in tabbing order usually have a naturally focusable\nelement as their focusEl, and it is the DOM event of that receiving focus which drives\nthe Component's onFocus handling, and the DOM event of it being blurred which drives the onBlur handling.

\n\n

If the focusEl is not naturally focusable, then the listeners are only added\nif the FocusManager is enabled.

\n
( eventName, [fn], [scope], [options] ) : Object
Appends an event handler to this object. ...

Appends an event handler to this object. For example:

\n\n
myGridPanel.on(\"mouseover\", this.onMouseOver, this);\n
\n\n

The method also allows for a single argument to be passed which is a config object\ncontaining properties which specify multiple events. For example:

\n\n
myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n
\n\n

One can also specify options for each event handler separately:

\n\n
myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
\n\n

Names of methods in a specified scope may also be used. Note that\nscope MUST be specified to use this option:

\n\n
myGridPanel.on({\n    cellClick: {fn: 'onCellClick', scope: this, single: true},\n    mouseover: {fn: 'onMouseOver', scope: panel}\n});\n
\n

Parameters

  • eventName : String/Object

    The name of the event to listen for.\nMay also be an object who's property names are event names.

    \n
  • fn : Function (optional)

    The method the event invokes, or if scope is specified, the name* of the method within\nthe specified scope. Will be called with arguments\ngiven to Ext.util.Observable.fireEvent plus the options parameter described below.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the handler function is\nexecuted. If omitted, defaults to the object which fired the event.

    \n
  • options : Object (optional)

    An object containing handler configuration.

    \n\n

    Note: Unlike in ExtJS 3.x, the options object will also be passed as the last\nargument to every event handler.

    \n\n

    This object may contain any of the following properties:

    \n
    • scope : Object

      The scope (this reference) in which the handler function is executed. If omitted,\n defaults to the object which fired the event.

      \n
    • delay : Number

      The number of milliseconds to delay the invocation of the handler after the event fires.

      \n
    • single : Boolean

      True to add a handler to handle just the next firing of the event, and then remove itself.

      \n
    • buffer : Number

      Causes the handler to be scheduled to run in an Ext.util.DelayedTask delayed\n by the specified number of milliseconds. If the event fires again within that time,\n the original handler is not invoked, but the new handler is scheduled in its place.

      \n
    • target : Ext.util.Observable

      Only call the handler if the event was fired on the target Observable, not if the event\n was bubbled up from a child Observable.

      \n
    • element : String

      This option is only valid for listeners bound to Components.\n The name of a Component property which references an element to add a listener to.

      \n\n

      This option is useful during Component construction to add DOM event listeners to elements of\n Components which will exist only after the Component is rendered.\n For example, to add a click listener to a Panel's body:

      \n\n
        new Ext.panel.Panel({\n      title: 'The title',\n      listeners: {\n          click: this.handlePanelClick,\n          element: 'body'\n      }\n  });\n
      \n
    • destroyable : Boolean (optional)

      When specified as true, the function returns A Destroyable object. An object which implements the destroy method which removes all listeners added in this call.

      \n

      Defaults to: false

    • priority : Number (optional)

      An optional numeric priority that determines the order in which event handlers\n are run. Event handlers with no priority will be run as if they had a priority\n of 0. Handlers with a higher priority will be prioritized to run sooner than\n those with a lower priority. Negative numbers can be used to set a priority\n lower than the default. Internally, the framework uses a range of 1000 or\n greater, and -1000 or lesser for handers that are intended to run before or\n after all others, so it is recommended to stay within the range of -999 to 999\n when setting the priority of event handlers in application-level code.

      \n\n

      Combining Options

      \n\n

      Using the options argument, it is possible to combine different types of listeners:

      \n\n

      A delayed, one-time listener.

      \n\n
      myPanel.on('hide', this.handleClick, this, {\n    single: true,\n    delay: 100\n});\n
      \n

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n

    A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

    \n\n
    this.btnListeners =  = myButton.on({\n    destroyable: true\n    mouseover:   function() { console.log('mouseover'); },\n    mouseout:    function() { console.log('mouseout'); },\n    click:       function() { console.log('click'); }\n});\n
    \n\n

    And when those listeners need to be removed:

    \n\n
    Ext.destroy(this.btnListeners);\n
    \n\n

    or

    \n\n
    this.btnListeners.destroy();\n
    \n

Overrides: Ext.util.Observable.addListener

( item, ename, [fn], [scope], [options] ) : Object
Adds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is\ndestr...

Adds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is\ndestroyed.

\n

Parameters

  • item : Ext.util.Observable/Ext.Element

    The item to which to add a listener/listeners.

    \n\n
  • ename : Object/String

    The event name, or an object containing event name properties.

    \n\n
  • fn : Function (optional)

    If the ename parameter was an event name, this is the handler function.

    \n\n
  • scope : Object (optional)

    If the ename parameter was an event name, this is the scope (this reference)\nin which the handler function is executed.

    \n\n
  • options : Object (optional)

    If the ename parameter was an event name, this is the\naddListener options.

    \n\n

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n\n\n\n

    A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

    \n\n\n\n\n
    this.btnListeners =  = myButton.mon({\n    destroyable: true\n    mouseover:   function() { console.log('mouseover'); },\n    mouseout:    function() { console.log('mouseout'); },\n    click:       function() { console.log('click'); }\n});\n
    \n\n\n\n\n

    And when those listeners need to be removed:

    \n\n\n\n\n
    Ext.destroy(this.btnListeners);\n
    \n\n\n\n\n

    or

    \n\n\n\n\n
    this.btnListeners.destroy();\n
    \n\n
Adds a plugin. ...

Adds a plugin. May be called at any time in the component's lifecycle.

\n

Parameters

( state, propName, [value] ) : Booleanprotected
Save a property to the given state object if it is not its default or configured\nvalue. ...

Save a property to the given state object if it is not its default or configured\nvalue.

\n

Parameters

  • state : Object

    The state object.

    \n
  • propName : String

    The name of the property on this object to save.

    \n
  • value : String (optional)

    The value of the state property (defaults to this[propName]).

    \n

Returns

  • Boolean

    The state object or a new object if state was null and the property\nwas saved.

    \n
Add events that will trigger the state to be saved. ...

Add events that will trigger the state to be saved. If the first argument is an\narray, each element of that array is the name of a state event. Otherwise, each\nargument passed to this method is the name of a state event.

\n

Parameters

  • events : String/String[]

    The event name or an array of event names.

    \n
Ext.panel.Panel
view source
( tools )
Add tools to this panel ...

Add tools to this panel

\n

Parameters

Ext.panel.Panel
view source
( )privatetemplate
Template method to be implemented in subclasses to add their tools after the collapsible tool. ...

Template method to be implemented in subclasses to add their tools after the collapsible tool.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n
inherit docs\n\nMethod which adds a specified UI + uiCls to the components element. ...

inherit docs

\n\n

Method which adds a specified UI + uiCls to the components element. Can be overridden to remove the UI from more\nthan just the components element.

\n

Parameters

  • ui : String

    The UI to remove from the element.

    \n\n

Overrides: Ext.AbstractComponent.addUIClsToElement

inherit docs\n\nMethod which adds a specified UI to the components element. ...

inherit docs

\n\n

Method which adds a specified UI to the components element.

\n

Overrides: Ext.AbstractComponent.addUIToElement

private ==> used outside of core\nTODO: currently only used by ToolTip. ...

private ==> used outside of core\nTODO: currently only used by ToolTip. does this method belong here?

\n

Parameters

...
\n

Parameters

Ext.panel.Panel
view source
( animated )protectedtemplate
Invoked after the Panel is Collapsed. ...

Invoked after the Panel is Collapsed.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

( width, height, oldWidth, oldHeight )protectedtemplate
Called by the layout system after the Component has been laid out. ...

Called by the layout system after the Component has been laid out.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

  • width : Number

    The width that was set

    \n
  • height : Number

    The height that was set

    \n
  • oldWidth : Number/undefined

    The old width, or undefined if this was the initial layout.

    \n
  • oldHeight : Number/undefined

    The old height, or undefined if this was the initial layout.

    \n

Overrides: Ext.Component.afterComponentLayout

Ext.panel.Panel
view source
( animated )protectedtemplate
Invoked after the Panel is Expanded. ...

Invoked after the Panel is Expanded.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

...
\n

Parameters

( [callback], [scope] )protectedtemplate
Invoked after the Component has been hidden. ...

Invoked after the Component has been hidden.

\n\n

Gets passed the same callback and scope parameters that onHide received.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Invoked after the Container has laid out (and rendered if necessary)\nits child Components. ...

Invoked after the Container has laid out (and rendered if necessary)\nits child Components.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Allows addition of behavior after rendering is complete. ...

Allows addition of behavior after rendering is complete. At this stage the Component’s Element\nwill have been styled according to the configuration, will have had any configured CSS class\nnames added, and will be in the configured visibility and the configured enable state.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Overrides: Ext.util.Renderable.afterRender

Template method called after a Component has been positioned. ...

Template method called after a Component has been positioned.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Overrides: Ext.AbstractComponent.afterSetPosition

( [animateTarget], [callback], [scope] )protectedtemplate
Invoked after the Component is shown (after onShow is called). ...

Invoked after the Component is shown (after onShow is called).

\n\n

Gets passed the same parameters as show.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

( element, [position], [offsets], [animate] ) : Ext.util.Positionablechainable
Aligns the element with another element relative to the specified anchor points. ...

Aligns the element with another element relative to the specified anchor points. If\nthe other element is the document it aligns it to the viewport. The position\nparameter is optional, and can be specified in any one of the following formats:

\n\n
    \n
  • Blank: Defaults to aligning the element's top-left corner to the target's\nbottom-left corner (\"tl-bl\").
  • \n
  • One anchor (deprecated): The passed anchor position is used as the target\nelement's anchor point. The element being aligned will position its top-left\ncorner (tl) to that point. This method has been deprecated in favor of the newer\ntwo anchor syntax below.
  • \n
  • Two anchors: If two values from the table below are passed separated by a dash,\nthe first value is used as the element's anchor point, and the second value is\nused as the target's anchor point.
  • \n
\n\n\n

In addition to the anchor points, the position parameter also supports the \"?\"\ncharacter. If \"?\" is passed at the end of the position string, the element will\nattempt to align as specified, but the position will be adjusted to constrain to\nthe viewport if necessary. Note that the element being aligned might be swapped to\nalign to a different position than that specified in order to enforce the viewport\nconstraints. Following are all of the supported anchor positions:

\n\n
Value  Description\n-----  -----------------------------\ntl     The top left corner (default)\nt      The center of the top edge\ntr     The top right corner\nl      The center of the left edge\nc      In the center of the element\nr      The center of the right edge\nbl     The bottom left corner\nb      The center of the bottom edge\nbr     The bottom right corner\n
\n\n\n

Example Usage:

\n\n
// align el to other-el using the default positioning\n// (\"tl-bl\", non-constrained)\nel.alignTo(\"other-el\");\n\n// align the top left corner of el with the top right corner of other-el\n// (constrained to viewport)\nel.alignTo(\"other-el\", \"tr?\");\n\n// align the bottom right corner of el with the center left edge of other-el\nel.alignTo(\"other-el\", \"br-l?\");\n\n// align the center of el with the bottom left corner of other-el and\n// adjust the x position by -6 pixels (and the y position by 0)\nel.alignTo(\"other-el\", \"c-bl\", [-6, 0]);\n
\n

Parameters

  • element : Ext.util.Positionable/HTMLElement/String

    The Positionable,\nHTMLElement, or id of the element to align to.

    \n
  • position : String (optional)

    The position to align to

    \n

    Defaults to: "tl-bl?"

  • offsets : Number[] (optional)

    Offset the positioning by [x, y]

    \n
  • animate : Boolean/Object (optional)

    true for the default animation or a standard\nElement animation config object

    \n

Returns

( element, [position], [offsets], [animate], [monitorScroll], [callback] ) : Ext.util.Positionablechainable
Anchors an element to another element and realigns it when the window is resized. ...

Anchors an element to another element and realigns it when the window is resized.

\n

Parameters

  • element : Ext.util.Positionable/HTMLElement/String

    The Positionable,\nHTMLElement, or id of the element to align to.

    \n
  • position : String (optional)

    The position to align to

    \n

    Defaults to: "tl-bl?"

  • offsets : Number[] (optional)

    Offset the positioning by [x, y]

    \n
  • animate : Boolean/Object (optional)

    true for the default animation or a standard\nElement animation config object

    \n
  • monitorScroll : Boolean/Number (optional)

    True to monitor body scroll and\nreposition. If this parameter is a number, it is used as the buffer delay in\nmilliseconds.

    \n

    Defaults to: 50

  • callback : Function (optional)

    The function to call after the animation finishes

    \n

Returns

process the passed fx configuration. ...
    \n
  • process the passed fx configuration.
  • \n
\n\n

Parameters

Performs custom animation on this object. ...

Performs custom animation on this object.

\n\n

This method is applicable to both the Component class and the Sprite\nclass. It performs animated transitions of certain properties of this object over a specified timeline.

\n\n

Animating a Component

\n\n

When animating a Component, the following properties may be specified in from, to, and keyframe objects:

\n\n
    \n
  • x - The Component's page X position in pixels.

  • \n
  • y - The Component's page Y position in pixels

  • \n
  • left - The Component's left value in pixels.

  • \n
  • top - The Component's top value in pixels.

  • \n
  • width - The Component's width value in pixels.

  • \n
  • height - The Component's height value in pixels.

  • \n
  • dynamic - Specify as true to update the Component's layout (if it is a Container) at every frame of the animation.\nUse sparingly as laying out on every intermediate size change is an expensive operation.

  • \n
\n\n\n

For example, to animate a Window to a new size, ensuring that its internal layout and any shadow is correct:

\n\n
myWindow = Ext.create('Ext.window.Window', {\n    title: 'Test Component animation',\n    width: 500,\n    height: 300,\n    layout: {\n        type: 'hbox',\n        align: 'stretch'\n    },\n    items: [{\n        title: 'Left: 33%',\n        margins: '5 0 5 5',\n        flex: 1\n    }, {\n        title: 'Left: 66%',\n        margins: '5 5 5 5',\n        flex: 2\n    }]\n});\nmyWindow.show();\nmyWindow.header.el.on('click', function() {\n    myWindow.animate({\n        to: {\n            width: (myWindow.getWidth() == 500) ? 700 : 500,\n            height: (myWindow.getHeight() == 300) ? 400 : 300\n        }\n    });\n});\n
\n\n

For performance reasons, by default, the internal layout is only updated when the Window reaches its final \"to\"\nsize. If dynamic updating of the Window's child Components is required, then configure the animation with\ndynamic: true and the two child items will maintain their proportions during the animation.

\n

Parameters

Returns

Overrides: Ext.util.Animate.animate

Sets references to elements inside the component. ...

Sets references to elements inside the component.

\n

Parameters

...
\n

Parameters

Sets references to elements inside the component. ...

Sets references to elements inside the component. This applies renderSelectors\nas well as childEls.

\n
Applies the state to the object. ...

Applies the state to the object. This should be overridden in subclasses to do\nmore complex state operations. By default it applies the state properties onto\nthe current object.

\n

Parameters

Template method to do any pre-blur processing. ...

Template method to do any pre-blur processing.

\n

Parameters

( adjWidth, adjHeight )protectedtemplate
Occurs before componentLayout is run. ...

Occurs before componentLayout is run. Returning false from this method will prevent the componentLayout from\nbeing executed.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

  • adjWidth : Number

    The box-adjusted width that was set.

    \n
  • adjHeight : Number

    The box-adjusted height that was set.

    \n
Ext.panel.Panel
view source
( )protectedtemplate
Invoked before the Component is destroyed. ...

Invoked before the Component is destroyed.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Overrides: Ext.panel.AbstractPanel.beforeDestroy

Template method to do any pre-focus processing. ...

Template method to do any pre-focus processing.

\n

Parameters

Occurs before componentLayout is run. ...

Occurs before componentLayout is run. In previous releases, this method could\nreturn false to prevent its layout but that is not supported in Ext JS 4.1 or\nhigher. This method is simply a notification of the impending layout to give the\ncomponent a chance to adjust the DOM. Ideally, DOM reads should be avoided at this\ntime to reduce expensive document reflows.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Overrides: Ext.AbstractComponent.beforeLayout

Template method called before a Component is positioned. ...

Template method called before a Component is positioned.

\n\n

Ensures that the position is adjusted so that the Component is constrained if so configured.

\n

Parameters

Overrides: Ext.AbstractComponent.beforeSetPosition

Invoked before the Component is shown. ...

Invoked before the Component is shown.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n
Ext.panel.Panel
view source
( )private
Called before the change from default, configured state into the collapsed state. ...

Called before the change from default, configured state into the collapsed state.\nThis method may be called at render time to enable rendering in an initially collapsed state,\nor at runtime when an existing, fully layed out Panel may be collapsed.\nIt basically saves configs which need to be clobbered for the duration of the collapsed state.

\n
Ext.panel.Panel
view source
( )private
...
\n
Ext.panel.Panel
view source
( )private
...
\n
...
\n

Returns

Ext.panel.Panel
view source
( )private
...
\n
( fn, [scope], [args] ) : Ext.Componentchainable
Bubbles up the component/container heirarchy, calling the specified function with each component. ...

Bubbles up the component/container heirarchy, calling the specified function with each component. The scope\n(this) of function call will be the scope provided or the current component. The arguments to the function will\nbe the args provided or the current component. If the function returns false at any point, the bubble is stopped.

\n

Parameters

  • fn : Function

    The function to call

    \n
  • scope : Object (optional)

    The scope of the function. Defaults to current node.

    \n
  • args : Array (optional)

    The args to call the function with. Defaults to passing the current component.

    \n

Returns

( [anchor], [extraX], [extraY], [size] ) : Number[]private
Calculates x,y coordinates specified by the anchor position on the element, adding\nextraX and extraY values. ...

Calculates x,y coordinates specified by the anchor position on the element, adding\nextraX and extraY values.

\n

Parameters

  • anchor : String (optional)

    The specified anchor position.\nSee alignTo for details on supported anchor positions.

    \n

    Defaults to: 'tl'

  • extraX : Number (optional)

    value to be added to the x coordinate

    \n
  • extraY : Number (optional)

    value to be added to the y coordinate

    \n
  • size : Object (optional)

    An object containing the size to use for calculating anchor\nposition {width: (target width), height: (target height)} (defaults to the\nelement's current size)

    \n

Returns

  • Number[]

    [x, y] An array containing the element's x and y coordinates

    \n
( [constrainTo], [proposedPosition], [local], [proposedSize] ) : Number[]
Calculates the new [x,y] position to move this Positionable into a constrain region. ...

Calculates the new [x,y] position to move this Positionable into a constrain region.

\n\n

By default, this Positionable is constrained to be within the container it was added to, or the element it was\nrendered to.

\n\n

Priority is given to constraining the top and left within the constraint.

\n\n

An alternative constraint may be passed.

\n

Parameters

  • constrainTo : String/HTMLElement/Ext.Element/Ext.util.Region (optional)

    The Element or Region\ninto which this Component is to be constrained. Defaults to the element into which this Positionable\nwas rendered, or this Component's {@link Ext.Component.constrainTo.

    \n
  • proposedPosition : Number[] (optional)

    A proposed [X, Y] position to test for validity\nand to coerce into constraints instead of using this Positionable's current position.

    \n
  • local : Boolean (optional)

    The proposedPosition is local (relative to floatParent if a floating Component)

    \n
  • proposedSize : Number[] (optional)

    A proposed [width, height] size to use when calculating\nconstraints instead of using this Positionable's current size.

    \n

Returns

  • Number[]

    If the element needs to be translated, the new [X, Y] position within\nconstraints if possible, giving priority to keeping the top and left edge in the constrain region.\nOtherwise, false.

    \n
( args ) : Objectdeprecatedprotected
Call the original method that was previously overridden with override\n\nExt.define('My.Cat', {\n constructor: functi...

Call the original method that was previously overridden with override

\n\n
Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n
\n
\n

This method has been deprecated

\n

as of 4.1. Use callParent instead.

\n\n
\n

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object\nfrom the current method, for example: this.callOverridden(arguments)

    \n

Returns

  • Object

    Returns the result of calling the overridden method

    \n
Call the \"parent\" method of the current method. ...

Call the \"parent\" method of the current method. That is the method previously\noverridden by derivation or by an override (see Ext.define).

\n\n
 Ext.define('My.Base', {\n     constructor: function (x) {\n         this.x = x;\n     },\n\n     statics: {\n         method: function (x) {\n             return x;\n         }\n     }\n });\n\n Ext.define('My.Derived', {\n     extend: 'My.Base',\n\n     constructor: function () {\n         this.callParent([21]);\n     }\n });\n\n var obj = new My.Derived();\n\n alert(obj.x);  // alerts 21\n
\n\n

This can be used with an override as follows:

\n\n
 Ext.define('My.DerivedOverride', {\n     override: 'My.Derived',\n\n     constructor: function (x) {\n         this.callParent([x*2]); // calls original My.Derived constructor\n     }\n });\n\n var obj = new My.Derived();\n\n alert(obj.x);  // now alerts 42\n
\n\n

This also works with static methods.

\n\n
 Ext.define('My.Derived2', {\n     extend: 'My.Base',\n\n     statics: {\n         method: function (x) {\n             return this.callParent([x*2]); // calls My.Base.method\n         }\n     }\n });\n\n alert(My.Base.method(10);     // alerts 10\n alert(My.Derived2.method(10); // alerts 20\n
\n\n

Lastly, it also works with overridden static methods.

\n\n
 Ext.define('My.Derived2Override', {\n     override: 'My.Derived2',\n\n     statics: {\n         method: function (x) {\n             return this.callParent([x*2]); // calls My.Derived2.method\n         }\n     }\n });\n\n alert(My.Derived2.method(10); // now alerts 40\n
\n\n

To override a method and replace it and also call the superclass method, use\ncallSuper. This is often done to patch a method to fix a bug.

\n

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object\nfrom the current method, for example: this.callParent(arguments)

    \n

Returns

  • Object

    Returns the result of calling the parent method

    \n
This method is used by an override to call the superclass method but bypass any\noverridden method. ...

This method is used by an override to call the superclass method but bypass any\noverridden method. This is often done to \"patch\" a method that contains a bug\nbut for whatever reason cannot be fixed directly.

\n\n

Consider:

\n\n
 Ext.define('Ext.some.Class', {\n     method: function () {\n         console.log('Good');\n     }\n });\n\n Ext.define('Ext.some.DerivedClass', {\n     method: function () {\n         console.log('Bad');\n\n         // ... logic but with a bug ...\n\n         this.callParent();\n     }\n });\n
\n\n

To patch the bug in DerivedClass.method, the typical solution is to create an\noverride:

\n\n
 Ext.define('App.paches.DerivedClass', {\n     override: 'Ext.some.DerivedClass',\n\n     method: function () {\n         console.log('Fixed');\n\n         // ... logic but with bug fixed ...\n\n         this.callSuper();\n     }\n });\n
\n\n

The patch method cannot use callParent to call the superclass method since\nthat would call the overridden method containing the bug. In other words, the\nabove patch would only produce \"Fixed\" then \"Good\" in the console log, whereas,\nusing callParent would produce \"Fixed\" then \"Bad\" then \"Good\".

\n

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object\nfrom the current method, for example: this.callSuper(arguments)

    \n

Returns

  • Object

    Returns the result of calling the superclass method

    \n
Cancel any deferred focus on this component ...

Cancel any deferred focus on this component

\n
...
\n

Parameters

Cascades down the component/container heirarchy from this component (passed in\nthe first call), calling the specified...

Cascades down the component/container heirarchy from this component (passed in\nthe first call), calling the specified function with each component. The scope\n(this reference) of the function call will be the scope provided or the current\ncomponent. The arguments to the function will be the args provided or the current\ncomponent. If the function returns false at any point, the cascade is stopped on\nthat branch.

\n

Available since: 2.3.0

\n

Parameters

  • fn : Function

    The function to call

    \n
  • scope : Object (optional)

    The scope of the function (defaults to current component)

    \n
  • args : Array (optional)

    The args to call the function with. The current component\nalways passed as the last argument.

    \n

Returns

Center this Component in its container. ...

Center this Component in its container.

\n

Returns

Retrieves the first direct child of this container which matches the passed selector or component. ...

Retrieves the first direct child of this container which matches the passed selector or component.\nThe passed in selector must comply with an Ext.ComponentQuery selector, or it can be an actual Ext.Component.

\n

Parameters

Returns

Removes all listeners for this object including the managed listeners ...

Removes all listeners for this object including the managed listeners

\n
Removes all managed listeners for this object. ...

Removes all managed listeners for this object.

\n
Clone the current component using the original config values passed into this instance by default. ...

Clone the current component using the original config values passed into this instance by default.

\n

Parameters

  • overrides : Object

    A new config containing any properties to override in the cloned version.\nAn id property can be passed on this object, otherwise one will be generated to avoid duplicates.

    \n

Returns

Ext.panel.Panel
view source
( )
Closes the Panel. ...

Closes the Panel. By default, this method, removes it from the DOM, destroys the\nPanel object and all its descendant Components. The beforeclose event is fired before the\nclose happens and will cancel the close action if it returns false.

\n\n

Note: This method is also affected by the closeAction setting. For more explicit control use\ndestroy and hide methods.

\n
Ext.panel.Panel
view source
( [direction], [animate] ) : Ext.panel.Panelchainable
Collapses the panel body so that the body becomes hidden. ...

Collapses the panel body so that the body becomes hidden. Docked Components parallel to the border towards which\nthe collapse takes place will remain visible. Fires the beforecollapse event which will cancel the\ncollapse action if it returns false.

\n

Parameters

Returns

Ext.panel.Panel
view source
( )private
...
\n
Ext.panel.Panel
view source
( )private
...
\n
...
\n

Parameters

  • ptype : String/Object

    string or config object containing a ptype property.

    \n\n

    Constructs a plugin according to the passed config object/ptype string.

    \n\n

    Ensures that the constructed plugin always has a cmp reference back to this component.\nThe setting up of this is done in PluginManager. The PluginManager ensures that a reference to this\ncomponent is passed to the constructor. It also ensures that the plugin's setCmp method (if any) is called.

    \n
Returns an array of fully constructed plugin instances. ...

Returns an array of fully constructed plugin instances. This converts any configs into their\nappropriate instances.

\n\n

It does not mutate the plugins array. It creates a new array.

\n
Determines whether the passed Component is either an immediate child of this Container,\nor whether it is a descendant. ...

Determines whether the passed Component is either an immediate child of this Container,\nor whether it is a descendant.

\n

Parameters

  • comp : Ext.Component

    The Component to test.

    \n
  • deep : Boolean (optional)

    Pass true to test for the Component being a descendant at any level.

    \n

    Defaults to: false

Returns

  • Boolean

    true if the passed Component is contained at the specified level.

    \n
( eventName, args, bubbles )private
Continue to fire event. ...

Continue to fire event.

\n

Parameters

Ext.panel.Panel
view source
( collapseDir )
converts a collapsdDir into an anchor argument for Element.slideIn\noverridden in rtl mode to switch \"l\" and \"r\" ...

converts a collapsdDir into an anchor argument for Element.slideIn\noverridden in rtl mode to switch \"l\" and \"r\"

\n

Parameters

Defined in override Ext.rtl.AbstractComponent. ...

Defined in override Ext.rtl.AbstractComponent.

\n

Parameters

Ext.panel.Panel
view source
( direction, defaults )private
...
\n

Parameters

Creates an event handling function which refires the event from this object as the passed event name. ...

Creates an event handling function which refires the event from this object as the passed event name.

\n

Parameters

  • newName : String

    The name under which to refire the passed parameters.

    \n
  • beginEnd : Array (optional)

    The caller can specify on which indices to slice.

    \n

Returns

Detach a component from the DOM ...

Detach a component from the DOM

\n

Parameters

Inherit docs\nDisable all immediate children that was previously disabled\nOverride disable because onDisable only gets...

Inherit docs\nDisable all immediate children that was previously disabled\nOverride disable because onDisable only gets called when rendered

\n\n

Disable the component.

\n

Available since: 1.1.0

\n

Parameters

  • silent : Boolean (optional)

    Passing true will suppress the disable event from being fired.

    \n

    Defaults to: false

Returns

Overrides: Ext.AbstractComponent.disable

Called from the selected frame generation template to insert this Component's inner structure inside the framing stru...

Called from the selected frame generation template to insert this Component's inner structure inside the framing structure.

\n\n

When framing is used, a selected frame generation template is used as the primary template of the getElConfig instead\nof the configured renderTpl. The renderTpl is invoked by this method which is injected into the framing template.

\n

Parameters

Handles autoRender. ...

Handles autoRender.\nFloating Components may have an ownerCt. If they are asking to be constrained, constrain them within that\nownerCt, and have their z-index managed locally. Floating Components are always rendered to document.body

\n
Ext.panel.Panel
view source
( )private
...
\n
Ext.panel.Panel
view source
( flags, animate )private
...
\n

Parameters

This method needs to be called whenever you change something on this component that requires the Component's\nlayout t...

This method needs to be called whenever you change something on this component that requires the Component's\nlayout to be recalculated.

\n

Returns

Moves this floating Component into a constrain region. ...

Moves this floating Component into a constrain region.

\n\n

By default, this Component is constrained to be within the container it was added to, or the element it was\nrendered to.

\n\n

An alternative constraint may be passed.

\n

Parameters

  • constrainTo : String/HTMLElement/Ext.Element/Ext.util.Region (optional)

    The Element or Region\ninto which this Component is to be constrained. Defaults to the element into which this floating Component\nwas rendered.

    \n
Manually force this container's layout to be recalculated. ...

Manually force this container's layout to be recalculated. The framework uses this internally to refresh layouts\nform most cases.

\n

Available since: 2.3.0

\n

Returns

...
\n

Parameters

...
\n

Parameters

...
\n

Parameters

...
\n

Parameters

Retrieves the first descendant of this container which matches the passed selector. ...

Retrieves the first descendant of this container which matches the passed selector.\nThe passed in selector must comply with an Ext.ComponentQuery selector, or it can be an actual Ext.Component.

\n

Parameters

Returns

Enable all immediate children that was previously disabled\nOverride enable because onEnable only gets called when ren...

Enable all immediate children that was previously disabled\nOverride enable because onEnable only gets called when rendered

\n\n

Enable the component

\n

Available since: 1.1.0

\n

Parameters

  • silent : Boolean (optional)

    Passing true will suppress the enable event from being fired.

    \n

    Defaults to: false

Returns

Overrides: Ext.AbstractComponent.enable

Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...

Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. There is no implementation in the Observable base class.

\n\n

This is commonly used by Ext.Components to bubble events to owner Containers.\nSee Ext.Component.getBubbleTarget. The default implementation in Ext.Component returns the\nComponent's immediate owner. But if a known target is required, this can be overridden to access the\nrequired target more quickly.

\n\n

Example:

\n\n
Ext.define('Ext.overrides.form.field.Base', {\n    override: 'Ext.form.field.Base',\n\n    //  Add functionality to Field's initComponent to enable the change event to bubble\n    initComponent: function () {\n        this.callParent();\n        this.enableBubble('change');\n    }\n});\n\nvar myForm = Ext.create('Ext.form.Panel', {\n    title: 'User Details',\n    items: [{\n        ...\n    }],\n    listeners: {\n        change: function() {\n            // Title goes red if form has been modified.\n            myForm.header.setStyle('color', 'red');\n        }\n    }\n});\n
\n

Parameters

  • eventNames : String/String[]

    The event name to bubble, or an Array of event names.

    \n
Ext.panel.Panel
view source
( )private
...
\n
Ensures that this component is attached to document.body. ...

Ensures that this component is attached to document.body. If the component was\nrendered to Ext.getDetachedBody, then it will be appended to document.body.\nAny configured position is also restored.

\n

Parameters

  • runLayout : Boolean (optional)

    True to run the component's layout.

    \n

    Defaults to: false

Ext.panel.Panel
view source
( [animate] ) : Ext.panel.Panelchainable
Expands the panel body so that it becomes visible. ...

Expands the panel body so that it becomes visible. Fires the beforeexpand event which will\ncancel the expand action if it returns false.

\n

Parameters

  • animate : Boolean (optional)

    True to animate the transition, else false\n(defaults to the value of the animCollapse panel config). May\nalso be specified as the animation duration in milliseconds.

    \n

Returns

Find a container above this component at any level by a custom function. ...

Find a container above this component at any level by a custom function. If the passed function returns true, the\ncontainer will be returned.

\n\n

See also the up method.

\n

Parameters

  • fn : Function

    The custom function to call with the arguments (container, this component).

    \n

Returns

Find a container above this component at any level by xtype or class\n\nSee also the up method. ...

Find a container above this component at any level by xtype or class

\n\n

See also the up method.

\n

Parameters

  • xtype : String/Ext.Class

    The xtype string for a component, or the class of the component directly

    \n

Returns

Retrieves plugin from this component's collection by its ptype. ...

Retrieves plugin from this component's collection by its ptype.

\n

Parameters

  • ptype : String

    The Plugin's ptype as specified by the class's alias configuration.

    \n

Returns

Ext.panel.Panel
view source
( direction )private
...
\n

Parameters

This method visits the rendered component tree in a \"top-down\" order. ...

This method visits the rendered component tree in a \"top-down\" order. That is, this\ncode runs on a parent component before running on a child. This method calls the\nonRender method of each component.

\n

Parameters

  • containerIdx : Number

    The index into the Container items of this Component.

    \n
Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...

Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addListener).

\n\n

An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget) by\ncalling enableBubble.

\n

Parameters

  • eventName : String

    The name of the event to fire.

    \n
  • args : Object...

    Variable number of parameters are passed to handlers.

    \n

Returns

  • Boolean

    returns false if any of the handlers return false otherwise it returns true.

    \n
Fires the specified event with the passed parameter list. ...

Fires the specified event with the passed parameter list.

\n\n

An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget) by\ncalling enableBubble.

\n

Parameters

  • eventName : String

    The name of the event to fire.

    \n
  • args : Object[]

    An array of parameters which are passed to handlers.

    \n

Returns

  • Boolean

    returns false if any of the handlers return false otherwise it returns true.

    \n
For more information on the hierarchy events, see the note for the\nhierarchyEventSource observer defined in the onCla...

For more information on the hierarchy events, see the note for the\nhierarchyEventSource observer defined in the onClassCreated callback.

\n\n

This functionality is contained in Component (as opposed to Container)\nbecause a Component can be the ownerCt for a floating component (loadmask),\nand the loadmask needs to know when its owner is shown/hidden via the\nhierarchyEventSource so that its hidden state can be synchronized.

\n\n

TODO: merge this functionality with Ext.globalEvents

\n

Parameters

...
\n

Parameters

Ext.panel.Panel
view source
( )private
...
\n
( [selectText], [delay], [callback], [scope] ) : Ext.Component
Try to focus this component. ...

Try to focus this component.

\n

Parameters

  • selectText : Boolean (optional)

    If applicable, true to also select the text in this component

    \n
  • delay : Boolean/Number (optional)

    Delay the focus this number of milliseconds (true for 10 milliseconds).

    \n
  • callback : Function (optional)

    Only needed if the delay parameter is used. A function to call upon focus.

    \n
  • scope : Function (optional)

    Only needed if the delay parameter is used. The scope (this reference) in which to execute the callback.

    \n

Returns

  • Ext.Component

    The focused Component. Usually this Component. Some Containers may\ndelegate focus to a descendant Component (Windows can do this through their\ndefaultFocus config option.

    \n
Forces this component to redo its componentLayout. ...

Forces this component to redo its componentLayout.

\n
\n

This method has been deprecated since 4.1.0

\n

Use updateLayout instead.

\n\n
\n
Deprecate 5.0 ...

Deprecate 5.0

\n
Returns the current animation if this object has any effects actively running or queued, else returns false. ...

Returns the current animation if this object has any effects actively running or queued, else returns false.

\n

Returns

( element, [position], [offsets] ) : Number[]
Gets the x,y coordinates to align this element with another element. ...

Gets the x,y coordinates to align this element with another element. See\nalignTo for more info on the supported position values.

\n

Parameters

  • element : Ext.util.Positionable/HTMLElement/String

    The Positionable,\nHTMLElement, or id of the element to align to.

    \n
  • position : String (optional)

    The position to align to

    \n

    Defaults to: "tl-bl?"

  • offsets : Number[] (optional)

    Offset the positioning by [x, y]

    \n

Returns

private ...

private

\n
( el, [anchor], [local], [size] ) : Number[]private
Begin Positionable methods\n\n\n\nOverridden in Ext.rtl.AbstractComponent. ...

\n\n

Begin Positionable methods

\n\n
\n\n

Overridden in Ext.rtl.AbstractComponent.

\n\n

Gets the x,y coordinates of an element specified by the anchor position on the\nelement.

\n

Parameters

  • el : Ext.dom.Element

    The element

    \n
  • anchor : String (optional)

    The specified anchor position.\nSee alignTo for details on supported anchor positions.

    \n

    Defaults to: 'tl'

  • local : Boolean (optional)

    True to get the local (element top/left-relative) anchor\nposition instead of page coordinates

    \n
  • size : Object (optional)

    An object containing the size to use for calculating anchor\nposition {width: (target width), height: (target height)} (defaults to the\nelement's current size)

    \n

Returns

  • Number[]

    [x, y] An array containing the element's x and y coordinates

    \n

Overrides: Ext.util.Positionable.getAnchorToXY

( [anchor], [local], [size] ) : Number[]
Gets the x,y coordinates specified by the anchor position on the element. ...

Gets the x,y coordinates specified by the anchor position on the element.

\n

Parameters

  • anchor : String (optional)

    The specified anchor position.\nSee alignTo for details on supported anchor positions.

    \n

    Defaults to: 'tl'

  • local : Boolean (optional)

    True to get the local (element top/left-relative) anchor\nposition instead of page coordinates

    \n
  • size : Object (optional)

    An object containing the size to use for calculating anchor\nposition {width: (target width), height: (target height)} (defaults to the\nelement's current size)

    \n

Returns

  • Number[]

    [x, y] An array containing the element's x and y coordinates

    \n
...
\n

Parameters

Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n\n

Returns the size of the element's borders and padding.

\n

Returns

  • Object

    an object with the following numeric properties\n- beforeX\n- afterX\n- beforeY\n- afterY

    \n

Overrides: Ext.util.Positionable.getBorderPadding

Return an object defining the area of this Element which can be passed to\nsetBox to set another Element's size/locati...

Return an object defining the area of this Element which can be passed to\nsetBox to set another Element's size/location to match this element.

\n

Parameters

  • contentBox : Boolean (optional)

    If true a box for the content of the element is\nreturned.

    \n
  • local : Boolean (optional)

    If true the element's left and top relative to its\noffsetParent are returned instead of page x/y.

    \n

Returns

  • Object

    box An object in the format:

    \n\n
    {\n    x: <Element's X position>,\n    y: <Element's Y position>,\n    left: <Element's X position (an alias for x)>,\n    top: <Element's Y position (an alias for y)>,\n    width: <Element's width>,\n    height: <Element's height>,\n    bottom: <Element's lower bound>,\n    right: <Element's rightmost bound>\n}\n
    \n\n

    The returned object may also be addressed as an Array where index 0 contains the X\nposition and index 1 contains the Y position. The result may also be used for\nsetXY

    \n
Gets the bubbling parent for an Observable ...

Gets the bubbling parent for an Observable

\n

Returns

Implements an upward event bubbling policy. ...

Implements an upward event bubbling policy. By default a Component bubbles events up to its reference owner.

\n\n

Component subclasses may implement a different bubbling strategy by overriding this method.

\n

Overrides: Ext.AbstractComponent.getBubbleTarget

Return the immediate child Component in which the passed element is located. ...

Return the immediate child Component in which the passed element is located.

\n

Parameters

  • el : Ext.Element/HTMLElement/String

    The element to test (or ID of element).

    \n
  • deep : Boolean

    If true, returns the deepest descendant Component which contains the passed element.

    \n

Returns

Gets a list of child components to enable/disable when the container is\nenabled/disabled ...

Gets a list of child components to enable/disable when the container is\nenabled/disabled

\n

Returns

Returns the current collapsed state of the panel. ...

Returns the current collapsed state of the panel.

\n

Returns

Attempts a default component lookup (see Ext.container.Container.getComponent). ...

Attempts a default component lookup (see Ext.container.Container.getComponent). If the component is not found in the normal\nitems, the dockedItems are searched and the matched component (if any) returned (see getDockedComponent). Note that docked\nitems will only be matched by component id or itemId -- if you pass a numeric index only non-docked child components will be searched.

\n

Available since: 2.3.0

\n

Parameters

  • comp : String/Number

    The component id, itemId or position to find

    \n

Returns

Overrides: Ext.container.AbstractContainer.getComponent

used as the key lookup function for the items collection ...
    \n
  • used as the key lookup function for the items collection
  • \n
\n\n

Parameters

...
\n

Parameters

( [constrainTo], [proposedPosition], [proposedSize] ) : Number[]/Boolean
Returns the [X, Y] vector by which this Positionable's element must be translated to make a best\nattempt to constrain...

Returns the [X, Y] vector by which this Positionable's element must be translated to make a best\nattempt to constrain within the passed constraint. Returns false if the element\ndoes not need to be moved.

\n\n

Priority is given to constraining the top and left within the constraint.

\n\n

The constraint may either be an existing element into which the element is to be\nconstrained, or a Region into which this element is to be\nconstrained.

\n\n

By default, any extra shadow around the element is not included in the constrain calculations - the edges\nof the element are used as the element bounds. To constrain the shadow within the constrain region, set the\nconstrainShadow property on this element to true.

\n

Parameters

  • constrainTo : Ext.util.Positionable/HTMLElement/String/Ext.util.Region (optional)

    The\nPositionable, HTMLElement, element id, or Region into which the element is to be\nconstrained.

    \n
  • proposedPosition : Number[] (optional)

    A proposed [X, Y] position to test for validity\nand to produce a vector for instead of using the element's current position

    \n
  • proposedSize : Number[] (optional)

    A proposed [width, height] size to constrain\ninstead of using the element's current size

    \n

Returns

  • Number[]/Boolean

    If the element needs to be translated, an [X, Y]\nvector by which this element must be translated. Otherwise, false.

    \n
Finds a docked component by id, itemId or position. ...

Finds a docked component by id, itemId or position. Also see getDockedItems

\n

Parameters

Returns

Retrieves an array of all currently docked Components. ...

Retrieves an array of all currently docked Components.

\n\n

For example to find a toolbar that has been docked at top:

\n\n
panel.getDockedItems('toolbar[dock=\"top\"]');\n
\n

Parameters

  • selector : String

    A ComponentQuery selector string to filter the returned items.

    \n
  • beforeBody : Boolean

    An optional flag to limit the set of items to only those\n before the body (true) or after the body (false). All components are returned by\n default.

    \n

Returns

  • Ext.Component[]

    The array of docked components meeting the specified criteria.

    \n
...
\n

Parameters

Retrieves the top level element representing this component. ...

Retrieves the top level element representing this component.

\n

Available since: 1.1.0

\n

Returns

Overrides: Ext.AbstractComponent.getEl

Ext.panel.Panel
view source
( ) : Ext.Elementprivate
Returns the focus holder element associated with this Container. ...

Returns the focus holder element associated with this Container. By default, this is the Container's target\nelement. Subclasses which use embedded focusable elements (such as Window and Button) should override this for use\nby the focus method.

\n

Returns

Overrides: Ext.container.AbstractContainer.getFocusEl

On render, reads an encoded style attribute, \"filter\" from the style of this Component's element. ...

On render, reads an encoded style attribute, \"filter\" from the style of this Component's element.\nThis information is memoized based upon the CSS class name of this Component's element.\nBecause child Components are rendered as textual HTML as part of the topmost Container, a dummy div is inserted\ninto the document to receive the document element's CSS class name, and therefore style attributes.

\n
...
\n

Parameters

Ext.panel.Panel
view source
( )
Gets the Header for this panel. ...

Gets the Header for this panel.

\n
Ext.panel.Panel
view source
( header )private
Create the class array to add to the Header when collpsed. ...

Create the class array to add to the Header when collpsed.

\n

Parameters

Gets the current height of the component's underlying element. ...

Gets the current height of the component's underlying element.

\n

Returns

Ext.panel.Panel
view source
( )private
...
\n
A component's hierarchyState is used to keep track of aspects of a component's\nstate that affect its descendants hier...

A component's hierarchyState is used to keep track of aspects of a component's\nstate that affect its descendants hierarchically like \"collapsed\" and \"hidden\".\nFor example, if this.hierarchyState.hidden == true, it means that either this\ncomponent, or one of its ancestors is hidden.

\n\n

Hierarchical state management is implemented by chaining each component's\nhierarchyState property to its parent container's hierarchyState property via the\nprototype. The result is such that if a component's hierarchyState does not have\nit's own property, it inherits the property from the nearest ancestor that does.

\n\n

To set a hierarchical \"hidden\" value:

\n\n
this.getHierarchyState().hidden = true;\n
\n\n

It is important to remember when unsetting hierarchyState properties to delete\nthem instead of just setting them to a falsy value. This ensures that the\nhierarchyState returns to a state of inheriting the value instead of overriding it\nTo unset the hierarchical \"hidden\" value:

\n\n
delete this.getHierarchyState().hidden;\n
\n\n

IMPORTANT! ALWAYS access hierarchyState using this method, not by accessing\nthis.hierarchyState directly. The hierarchyState property does not exist until\nthe first time getHierarchyState() is called. At that point getHierarchyState()\nwalks up the component tree to establish the hierarchyState prototype chain.\nAdditionally the hierarchyState property should NOT be relied upon even after\nthe initial call to getHierarchyState() because it is possible for the\nhierarchyState to be invalidated. Invalidation typically happens when a component\nis moved to a new container. In such a case the hierarchy state remains invalid\nuntil the next time getHierarchyState() is called on the component or one of its\ndescendants.

\n

Parameters

Retrieves the id of this component. ...

Retrieves the id of this component. Will auto-generate an id if one has not already been set.

\n

Returns

Overrides: Ext.AbstractComponent.getId

Returns the initial configuration passed to constructor when instantiating\nthis class. ...

Returns the initial configuration passed to constructor when instantiating\nthis class.

\n

Parameters

  • name : String (optional)

    Name of the config option to return.

    \n

Returns

  • Object/Mixed

    The full config object or a single config value\nwhen name parameter specified.

    \n
This function takes the position argument passed to onRender and returns a\nDOM element that you can use in the insert...

This function takes the position argument passed to onRender and returns a\nDOM element that you can use in the insertBefore.

\n

Parameters

Returns

  • HTMLElement

    DOM element that you can use in the insertBefore

    \n
Returns the value of itemId assigned to this component, or when that\nis not set, returns the value of id. ...

Returns the value of itemId assigned to this component, or when that\nis not set, returns the value of id.

\n

Returns

Ext.panel.Panel
view source
( )private
...
\n
Returns the layout instance currently associated with this Container. ...

Returns the layout instance currently associated with this Container.\nIf a layout has not been instantiated yet, that is done first

\n

Returns

Gets the Ext.ComponentLoader for this Component. ...

Gets the Ext.ComponentLoader for this Component.

\n

Returns

Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n\n

Returns the x coordinate of this element reletive to its offsetParent.

\n

Returns

  • Number

    The local x coordinate

    \n

Overrides: Ext.util.Positionable.getLocalX

Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n\n

Returns the x and y coordinates of this element relative to its offsetParent.

\n

Returns

  • Number[]

    The local XY position of the element

    \n

Overrides: Ext.util.Positionable.getLocalXY

Returns the y coordinate of this element reletive to its offsetParent. ...

Returns the y coordinate of this element reletive to its offsetParent.

\n

Returns

  • Number

    The local y coordinate

    \n

Overrides: Ext.util.Positionable.getLocalY

Returns the offsets of this element from the passed element. ...

Returns the offsets of this element from the passed element. The element must both\nbe part of the DOM tree and not have display:none to have page coordinates.

\n

Parameters

Returns

  • Number[]

    The XY page offsets (e.g. [100, -200])

    \n
Ext.panel.Panel
view source
( d )private
...
\n

Parameters

Include margins ...

Include margins

\n
Get an el for overflowing, defaults to the target el ...

Get an el for overflowing, defaults to the target el

\n
Returns the CSS style object which will set the Component's scroll styles. ...

Returns the CSS style object which will set the Component's scroll styles. This must be applied\nto the target element.

\n
Returns the owning container if that container uses border layout. ...

Returns the owning container if that container uses border layout. Otherwise\nthis method returns null.

\n\n

Defined in override Ext.layout.container.border.Region.

\n

Returns

Returns the owning border (Ext.layout.container.Border) instance if there is\none. ...

Returns the owning border (Ext.layout.container.Border) instance if there is\none. Otherwise this method returns null.

\n\n

Defined in override Ext.layout.container.border.Region.

\n

Returns

Ext.panel.Panel
view source
( direction )private
...
\n

Parameters

Retrieves a plugin from this component's collection by its pluginId. ...

Retrieves a plugin from this component's collection by its pluginId.

\n

Parameters

Returns

Gets the current XY position of the component's underlying element. ...

Gets the current XY position of the component's underlying element.

\n

Parameters

  • local : Boolean (optional)

    If true the element's left and top are returned instead of page XY.

    \n

    Defaults to: false

Returns

  • Number[]

    The XY position of the element (e.g., [100, 200])

    \n
Deprecate 5.0 ...

Deprecate 5.0

\n
Ext.panel.Panel
view source
( direction )private
...
\n

Parameters

Used by ComponentQuery, child and down to retrieve all of the items\nwhich can potentially be considered a child of th...

Used by ComponentQuery, child and down to retrieve all of the items\nwhich can potentially be considered a child of this Container.

\n\n

This may be overriden by Components which have ownership of Components\nthat are not contained in the items collection.

\n\n

NOTE: IMPORTANT note for maintainers:\nItems are returned in tree traversal order. Each item is appended to the result array\nfollowed by the results of that child's getRefItems call.\nFloating child items are appended after internal child items.

\n

Parameters

Overrides: Ext.container.AbstractContainer.getRefItems

Used by ComponentQuery, and the up method to find the\nowning Component in the linkage hierarchy. ...

Used by ComponentQuery, and the up method to find the\nowning Component in the linkage hierarchy.

\n\n

By default this returns the Container which contains this Component.

\n\n

This may be overriden by Component authors who implement ownership hierarchies which are not\nbased upon ownerCt, such as BoundLists being owned by Fields or Menus being owned by Buttons.

\n
Returns a region object that defines the area of this element. ...

Returns a region object that defines the area of this element.

\n

Returns

  • Ext.util.Region

    A Region containing \"top, left, bottom, right\" properties.

    \n
Deprecate 5.0 ...

Deprecate 5.0

\n
Gets the current size of the component's underlying element. ...

Gets the current size of the component's underlying element.

\n

Returns

  • Object

    An object containing the element's size {width: (element width), height: (element height)}

    \n
Returns an object that describes how this component's width and height are managed. ...

Returns an object that describes how this component's width and height are managed.\nAll of these objects are shared and should not be modified.

\n

Parameters

Returns

Ext.panel.Panel
view source
( ) : Object
The supplied default state gathering method for the AbstractComponent class. ...

The supplied default state gathering method for the AbstractComponent class.

\n\n

This method returns dimension settings such as flex, anchor, width and height along with collapsed\nstate.

\n\n

Subclasses which implement more complex state should call the superclass's implementation, and apply their state\nto the result if this basic state is to be saved.

\n\n

Note that Component state will only be saved if the Component has a stateId and there as a StateProvider\nconfigured for the document.

\n

Returns

Overrides: Ext.AbstractComponent.getState

Gets the state id for this object. ...

Gets the state id for this object.

\n

Returns

  • String

    The 'stateId' or the implicit 'id' specified by component configuration.

    \n
Returns an offscreen div with the same class name as the element this is being rendered. ...

Returns an offscreen div with the same class name as the element this is being rendered.\nThis is because child item rendering takes place in a detached div which, being not\npart of the document, has no styling.

\n

Parameters

Ext.panel.Panel
view source
( )private
This is used to determine where to insert the 'html', 'contentEl' and 'items' in this component. ...

This is used to determine where to insert the 'html', 'contentEl' and 'items' in this component.

\n

Overrides: Ext.panel.AbstractPanel.getTargetEl

...
\n

Parameters

Returns the content region of this element. ...

Returns the content region of this element. That is the region within the borders\nand padding.

\n

Returns

  • Ext.util.Region

    A Region containing \"top, left, bottom, right\" member data.

    \n
Deprecate 5.0 ...

Deprecate 5.0

\n
Gets the current width of the component's underlying element. ...

Gets the current width of the component's underlying element.

\n

Returns

Ext.panel.Panel
view source
( )private
...
\n
Gets the current X position of the DOM element based on page coordinates. ...

Gets the current X position of the DOM element based on page coordinates.

\n

Returns

  • Number

    The X position of the element

    \n

Overrides: Ext.util.Positionable.getX

Gets the xtype for this component as registered with Ext.ComponentManager. ...

Gets the xtype for this component as registered with Ext.ComponentManager. For a list of all available\nxtypes, see the Ext.Component header. Example usage:

\n\n
var t = new Ext.form.field.Text();\nalert(t.getXType());  // alerts 'textfield'\n
\n

Returns

Returns this Component's xtype hierarchy as a slash-delimited string. ...

Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all available xtypes, see the\nExt.Component header.

\n\n

If using your own subclasses, be aware that a Component must register its own xtype to participate in\ndetermination of inherited xtypes.

\n\n

Example usage:

\n\n
var t = new Ext.form.field.Text();\nalert(t.getXTypes());  // alerts 'component/field/textfield'\n
\n

Available since: 2.3.0

\n

Returns

  • String

    The xtype hierarchy string

    \n
Gets the current position of the DOM element based on page coordinates. ...

Gets the current position of the DOM element based on page coordinates.

\n

Returns

  • Number[]

    The XY position of the element

    \n

Overrides: Ext.util.Positionable.getXY

Gets the current Y position of the DOM element based on page coordinates. ...

Gets the current Y position of the DOM element based on page coordinates.

\n

Returns

  • Number

    The Y position of the element

    \n

Overrides: Ext.util.Positionable.getY

Ext.panel.Panel
view source
( cls )private
used for dragging ...

used for dragging

\n

Parameters

Ext.panel.Panel
view source
( )private
helper function for ghost ...

helper function for ghost

\n
Returns the current animation if this object has any effects actively running or queued, else returns false. ...

Returns the current animation if this object has any effects actively running or queued, else returns false.

\n
\n

This method has been deprecated since 4.0

\n

Replaced by getActiveAnimation

\n\n
\n

Returns

Checks if the specified CSS class exists on this element's DOM node. ...

Checks if the specified CSS class exists on this element's DOM node.

\n

Parameters

  • className : String

    The CSS class to check for.

    \n

Returns

  • Boolean

    true if the class exists, else false.

    \n
...
\n

Parameters

Checks to see if this object has any listeners for a specified event, or whether the event bubbles. ...

Checks to see if this object has any listeners for a specified event, or whether the event bubbles. The answer\nindicates whether the event needs firing or not.

\n

Parameters

  • eventName : String

    The name of the event to check for

    \n

Returns

  • Boolean

    true if the event is being listened for or bubbles, else false

    \n
Checks if there is currently a specified uiCls. ...

Checks if there is currently a specified uiCls.

\n

Parameters

  • cls : String

    The cls to check.

    \n
( [animateTarget], [callback], [scope] ) : Ext.Componentchainable
Hides this Component, setting it to invisible using the configured hideMode. ...

Hides this Component, setting it to invisible using the configured hideMode.

\n

Parameters

  • animateTarget : String/Ext.Element/Ext.Component (optional)

    only valid for floating Components\nsuch as Windows or ToolTips, or regular Components which have\nbeen configured with floating: true.. The target to which the Component should animate while hiding.

    \n

    Defaults to: null

  • callback : Function (optional)

    A callback function to call after the Component is hidden.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the callback is executed.\nDefaults to this Component.

    \n

Returns

Ext.panel.Panel
view source
( )private
...
\n
Parses the bodyStyle config if available to create a style string that will be applied to the body element. ...

Parses the bodyStyle config if available to create a style string that will be applied to the body element.\nThis also includes bodyPadding and bodyBorder if available.

\n

Returns

  • String

    A CSS style string with body styles, padding and border.

    \n
This method is called by the Ext.layout.container.Border class when instances are\nadded as regions to the layout. ...

This method is called by the Ext.layout.container.Border class when instances are\nadded as regions to the layout. Since it is valid to add any component to a border\nlayout as a region, this method must be added to Ext.Component but is only ever\ncalled when that component is owned by a border layout.

\n\n

Defined in override Ext.layout.container.border.Region.

\n
The initComponent template method is an important initialization step for a Component. ...

The initComponent template method is an important initialization step for a Component. It is intended to be\nimplemented by each subclass of Ext.Component to provide any needed constructor logic. The\ninitComponent method of the class being created is called first, with each initComponent method\nup the hierarchy to Ext.Component being called thereafter. This makes it easy to implement and,\nif needed, override the constructor logic of the Component at any step in the hierarchy.

\n\n

The initComponent method must contain a call to callParent in order\nto ensure that the parent class' initComponent method is also called.

\n\n

All config options passed to the constructor are applied to this before initComponent is called,\nso you can simply access them with this.someOption.

\n\n

The following example demonstrates using a dynamic string for the text of a button at the time of\ninstantiation of the class.

\n\n
Ext.define('DynamicButtonText', {\n    extend: 'Ext.button.Button',\n\n    initComponent: function() {\n        this.text = new Date();\n        this.renderTo = Ext.getBody();\n        this.callParent();\n    }\n});\n\nExt.onReady(function() {\n    Ext.create('DynamicButtonText');\n});\n
\n

Available since: 1.1.0

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Overrides: Ext.container.AbstractContainer.initComponent

( config ) : Ext.Basechainableprotected
Initialize configuration for this class. ...

Initialize configuration for this class. a typical example:

\n\n
Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n
\n

Parameters

Returns

...
\n

Parameters

Ext.panel.Panel
view source
( )private
Initialize any events on this component ...

Initialize any events on this component

\n
Poke in a reference to applyRenderTpl(frameInfo, out) ...

Poke in a reference to applyRenderTpl(frameInfo, out)

\n

Parameters

Ext.panel.Panel
view source
( )private
...
\n
Called by getHierarchyState to initialize the hierarchyState the first\ntime it is requested. ...

Called by getHierarchyState to initialize the hierarchyState the first\ntime it is requested.

\n\n

Overridden in Ext.rtl.AbstractComponent.

\n

Parameters

Initializes padding by applying it to the target element, or if the layout manages\npadding ensures that the padding o...

Initializes padding by applying it to the target element, or if the layout manages\npadding ensures that the padding on the target element is \"0\".

\n

Parameters

...
\n

Parameters

Initialized the renderData to be used when rendering the renderTpl. ...

Initialized the renderData to be used when rendering the renderTpl.

\n

Returns

  • Object

    Object with keys and values that are going to be applied to the renderTpl

    \n

Overrides: Ext.util.Renderable.initRenderData

Initializes the renderTpl. ...

Initializes the renderTpl.

\n

Returns

Ext.panel.Panel
view source
( )private
Ext.panel.Panel
view source
( )private
Override Component.initDraggable. ...

Override Component.initDraggable.\nPanel (and subclasses) use the header element as the delegate.

\n
Initializes the state of the object upon construction. ...

Initializes the state of the object upon construction.

\n
Applies padding, margin, border, top, left, height, and width configs to the\nappropriate elements. ...

Applies padding, margin, border, top, left, height, and width configs to the\nappropriate elements.

\n

Parameters

Ext.panel.Panel
view source
( )private
Tools are a Panel-specific capabilty. ...

Tools are a Panel-specific capabilty.\nPanel uses initTools. Subclasses may contribute tools by implementing addTools.

\n
Inserts a Component into this Container at a specified index. ...

Inserts a Component into this Container at a specified index. Fires the\nbeforeadd event before inserting, then fires the add\nevent after the Component has been inserted.

\n

Available since: 2.3.0

\n

Parameters

  • index : Number

    The index at which the Component will be inserted\ninto the Container's items collection

    \n
  • component : Ext.Component/Object

    The child Component to insert.

    \n\n

    Ext uses lazy rendering, and will only render the inserted Component should\nit become necessary.

    \n\n

    A Component config object may be passed in order to avoid the overhead of\nconstructing a real Component object if lazy rendering might mean that the\ninserted Component will not be rendered immediately. To take advantage of\nthis 'lazy instantiation', set the Ext.Component.xtype config\nproperty to the registered type of the Component wanted.

    \n\n

    For a list of all available xtypes, see Ext.enums.Widget.

    \n

Returns

  • Ext.Component

    component The Component (or config object) that was\ninserted with the Container's default config values applied.

    \n
Inserts docked item(s) to the panel at the indicated position. ...

Inserts docked item(s) to the panel at the indicated position.

\n

Parameters

  • pos : Number

    The index at which the Component will be inserted

    \n
  • component : Object/Object[]

    The Component or array of components to add. The components\nmust include a 'dock' paramater on each component to indicate where it should be docked ('top', 'right',\n'bottom', 'left').

    \n
Tests whether this Component matches the selector string. ...

Tests whether this Component matches the selector string.

\n

Parameters

  • selector : String

    The selector string to test against.

    \n

Returns

  • Boolean

    true if this Component matches the selector.

    \n
Determines whether this Container is an ancestor of the passed Component. ...

Determines whether this Container is an ancestor of the passed Component.\nThis will return true if the passed Component is anywhere within the subtree\nbeneath this Container.

\n

Parameters

  • possibleDescendant : Ext.Component

    The Component to test for presence\nwithin this Container's subtree.

    \n
Utility method to determine if a Component is floating, and has an owning Container whose coordinate system\nit must b...

Utility method to determine if a Component is floating, and has an owning Container whose coordinate system\nit must be positioned in when using setPosition.

\n
...
\n

Parameters

Determines whether this component is the descendant of a particular container. ...

Determines whether this component is the descendant of a particular container.

\n

Parameters

Returns

  • Boolean

    true if the component is the descendant of a particular container, otherwise false.

    \n
Method to determine whether this Component is currently disabled. ...

Method to determine whether this Component is currently disabled.

\n

Returns

  • Boolean

    the disabled state of this Component.

    \n
Method to determine whether this Component is draggable. ...

Method to determine whether this Component is draggable.

\n

Returns

  • Boolean

    the draggable state of this component.

    \n
Method to determine whether this Component is droppable. ...

Method to determine whether this Component is droppable.

\n

Returns

  • Boolean

    the droppable state of this component.

    \n
Method to determine whether this Component is floating. ...

Method to determine whether this Component is floating.

\n

Returns

  • Boolean

    the floating state of this component.

    \n
Method to determine whether this Component is currently set to hidden. ...

Method to determine whether this Component is currently set to hidden.

\n

Returns

  • Boolean

    the hidden state of this Component.

    \n
Ext.panel.Panel
view source
( )protected
Determines whether this Component is the root of a layout. ...

Determines whether this Component is the root of a layout. This returns true if\nthis component can run its layout without assistance from or impact on its owner.\nIf this component cannot run its layout given these restrictions, false is returned\nand its owner will be considered as the next candidate for the layout root.

\n\n

Setting the _isLayoutRoot property to true causes this method to always\nreturn true. This may be useful when updating a layout of a Container which shrink\nwraps content, and you know that it will not change size, and so can safely be the\ntopmost participant in the layout run.

\n

Overrides: Ext.AbstractComponent.isLayoutRoot

Returns true if layout is suspended for this component. ...

Returns true if layout is suspended for this component. This can come from direct\nsuspension of this component's layout activity (Ext.Container.suspendLayout) or if one\nof this component's containers is suspended.

\n

Returns

  • Boolean

    true layout of this component is suspended.

    \n
Returns true if this component's local coordinate system is rtl. ...

Returns true if this component's local coordinate system is rtl. For normal\ncomponents this equates to the value of isParentRtl(). Floaters are a bit different\nbecause a floater's element can be a childNode of something other than its\nparent component's element. For floaters we have to read the dom to see if the\ncomponent's element's parentNode has a css direction value of \"rtl\".

\n\n

Defined in override Ext.rtl.AbstractComponent.

\n

Returns

Defined in override Ext.rtl.AbstractComponent. ...

Defined in override Ext.rtl.AbstractComponent.

\n
Returns true if this component's parent container is rtl. ...

Returns true if this component's parent container is rtl. Used by rtl positioning\nmethods to determine if the component should be positioned using a right-to-left\ncoordinate system.

\n\n

Defined in override Ext.rtl.AbstractComponent.

\n

Returns

Ext.panel.Panel
view source
( )private
...
\n
Ext.panel.Panel
view source
( [deep] ) : Boolean
Returns true if this component is visible. ...

Returns true if this component is visible.

\n

Available since: 1.1.0

\n

Parameters

  • deep : Boolean (optional)

    Pass true to interrogate the visibility status of all parent Containers to\ndetermine whether this Component is truly visible to the user.

    \n\n

    Generally, to determine whether a Component is hidden, the no argument form is needed. For example when creating\ndynamically laid out UIs in a hidden Container before showing them.

    \n

    Defaults to: false

Returns

  • Boolean

    true if this component is visible, false otherwise.

    \n

Overrides: Ext.AbstractComponent.isVisible

Tests whether or not this Component is of a specific xtype. ...

Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended\nfrom the xtype (default) or whether it is directly of the xtype specified (shallow = true).

\n\n

If using your own subclasses, be aware that a Component must register its own xtype to participate in\ndetermination of inherited xtypes.

\n\n

For a list of all available xtypes, see the Ext.Component header.

\n\n

Example usage:

\n\n
var t = new Ext.form.field.Text();\nvar isText = t.isXType('textfield');        // true\nvar isBoxSubclass = t.isXType('field');       // true, descended from Ext.form.field.Base\nvar isBoxInstance = t.isXType('field', true); // false, not a direct Ext.form.field.Base instance\n
\n

Available since: 2.3.0

\n

Parameters

  • xtype : String

    The xtype to check for this Component

    \n
  • shallow : Boolean (optional)

    true to check whether this Component is directly of the specified xtype, false to\ncheck whether this Component is descended from the xtype.

    \n

    Defaults to: false

Returns

  • Boolean

    true if this component descends from the specified xtype, false otherwise.

    \n
...
\n

Parameters

( item, ename, [fn], [scope], [options] ) : Object
Shorthand for addManagedListener. ...

Shorthand for addManagedListener.

\n\n

Adds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is\ndestroyed.

\n

Parameters

  • item : Ext.util.Observable/Ext.Element

    The item to which to add a listener/listeners.

    \n\n
  • ename : Object/String

    The event name, or an object containing event name properties.

    \n\n
  • fn : Function (optional)

    If the ename parameter was an event name, this is the handler function.

    \n\n
  • scope : Object (optional)

    If the ename parameter was an event name, this is the scope (this reference)\nin which the handler function is executed.

    \n\n
  • options : Object (optional)

    If the ename parameter was an event name, this is the\naddListener options.

    \n\n

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n\n\n\n

    A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

    \n\n\n\n\n
    this.btnListeners =  = myButton.mon({\n    destroyable: true\n    mouseover:   function() { console.log('mouseover'); },\n    mouseout:    function() { console.log('mouseout'); },\n    click:       function() { console.log('click'); }\n});\n
    \n\n\n\n\n

    And when those listeners need to be removed:

    \n\n\n\n\n
    Ext.destroy(this.btnListeners);\n
    \n\n\n\n\n

    or

    \n\n\n\n\n
    this.btnListeners.destroy();\n
    \n\n
Moves a Component within the Container ...

Moves a Component within the Container

\n

Parameters

Returns

Overrides: Ext.util.Positionable.move

( item, ename, [fn], [scope] )
Shorthand for removeManagedListener. ...

Shorthand for removeManagedListener.

\n\n

Removes listeners that were added by the mon method.

\n

Parameters

  • item : Ext.util.Observable/Ext.Element

    The item from which to remove a listener/listeners.

    \n\n
  • ename : Object/String

    The event name, or an object containing event name properties.

    \n\n
  • fn : Function (optional)

    If the ename parameter was an event name, this is the handler function.

    \n\n
  • scope : Object (optional)

    If the ename parameter was an event name, this is the scope (this reference)\nin which the handler function is executed.

    \n\n
...
\n

Parameters

Returns the next node in the Component tree in tree traversal order. ...

Returns the next node in the Component tree in tree traversal order.

\n\n

Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will walk the\ntree to attempt to find a match. Contrast with nextSibling.

\n

Parameters

Returns

  • Ext.Component

    The next node (or the next node which matches the selector).\nReturns null if there is no matching node.

    \n
Returns the next sibling of this Component. ...

Returns the next sibling of this Component.

\n\n

Optionally selects the next sibling which matches the passed ComponentQuery selector.

\n\n

May also be referred to as next()

\n\n

Note that this is limited to siblings, and if no siblings of the item match, null is returned. Contrast with\nnextNode

\n

Parameters

Returns

  • Ext.Component

    The next sibling (or the next sibling which matches the selector).\nReturns null if there is no matching sibling.

    \n
( eventName, [fn], [scope], [options] ) : Object
Shorthand for addListener. ...

Shorthand for addListener.

\n\n

Appends an event handler to this object. For example:

\n\n
myGridPanel.on(\"mouseover\", this.onMouseOver, this);\n
\n\n

The method also allows for a single argument to be passed which is a config object\ncontaining properties which specify multiple events. For example:

\n\n
myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n
\n\n

One can also specify options for each event handler separately:

\n\n
myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
\n\n

Names of methods in a specified scope may also be used. Note that\nscope MUST be specified to use this option:

\n\n
myGridPanel.on({\n    cellClick: {fn: 'onCellClick', scope: this, single: true},\n    mouseover: {fn: 'onMouseOver', scope: panel}\n});\n
\n

Parameters

  • eventName : String/Object

    The name of the event to listen for.\nMay also be an object who's property names are event names.

    \n\n
  • fn : Function (optional)

    The method the event invokes, or if scope is specified, the name* of the method within\nthe specified scope. Will be called with arguments\ngiven to fireEvent plus the options parameter described below.

    \n\n
  • scope : Object (optional)

    The scope (this reference) in which the handler function is\nexecuted. If omitted, defaults to the object which fired the event.

    \n\n
  • options : Object (optional)

    An object containing handler configuration.

    \n\n\n\n\n

    Note: Unlike in ExtJS 3.x, the options object will also be passed as the last\nargument to every event handler.

    \n\n\n\n\n

    This object may contain any of the following properties:

    \n\n
    • scope : Object

      The scope (this reference) in which the handler function is executed. If omitted,\n defaults to the object which fired the event.

      \n\n
    • delay : Number

      The number of milliseconds to delay the invocation of the handler after the event fires.

      \n\n
    • single : Boolean

      True to add a handler to handle just the next firing of the event, and then remove itself.

      \n\n
    • buffer : Number

      Causes the handler to be scheduled to run in an Ext.util.DelayedTask delayed\n by the specified number of milliseconds. If the event fires again within that time,\n the original handler is not invoked, but the new handler is scheduled in its place.

      \n\n
    • target : Ext.util.Observable

      Only call the handler if the event was fired on the target Observable, not if the event\n was bubbled up from a child Observable.

      \n\n
    • element : String

      This option is only valid for listeners bound to Components.\n The name of a Component property which references an element to add a listener to.

      \n\n\n\n\n

      This option is useful during Component construction to add DOM event listeners to elements of\n Components which will exist only after the Component is rendered.\n For example, to add a click listener to a Panel's body:

      \n\n\n\n\n
        new Ext.panel.Panel({\n      title: 'The title',\n      listeners: {\n          click: this.handlePanelClick,\n          element: 'body'\n      }\n  });\n
      \n\n
    • destroyable : Boolean (optional)

      When specified as true, the function returns A Destroyable object. An object which implements the destroy method which removes all listeners added in this call.

      \n\n

      Defaults to: false

    • priority : Number (optional)

      An optional numeric priority that determines the order in which event handlers\n are run. Event handlers with no priority will be run as if they had a priority\n of 0. Handlers with a higher priority will be prioritized to run sooner than\n those with a lower priority. Negative numbers can be used to set a priority\n lower than the default. Internally, the framework uses a range of 1000 or\n greater, and -1000 or lesser for handers that are intended to run before or\n after all others, so it is recommended to stay within the range of -999 to 999\n when setting the priority of event handlers in application-level code.

      \n\n\n\n\n

      Combining Options

      \n\n\n\n\n

      Using the options argument, it is possible to combine different types of listeners:

      \n\n\n\n\n

      A delayed, one-time listener.

      \n\n\n\n\n
      myPanel.on('hide', this.handleClick, this, {\n    single: true,\n    delay: 100\n});\n
      \n\n

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n\n\n\n

    A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

    \n\n\n\n\n
    this.btnListeners =  = myButton.on({\n    destroyable: true\n    mouseover:   function() { console.log('mouseover'); },\n    mouseout:    function() { console.log('mouseout'); },\n    click:       function() { console.log('click'); }\n});\n
    \n\n\n\n\n

    And when those listeners need to be removed:

    \n\n\n\n\n
    Ext.destroy(this.btnListeners);\n
    \n\n\n\n\n

    or

    \n\n\n\n\n
    this.btnListeners.destroy();\n
    \n\n
( component, position )protectedtemplate
This method is invoked after a new Component has been added. ...

This method is invoked after a new Component has been added. It\nis passed the Component which has been added. This method may\nbe used to update any internal structure which may depend upon\nthe state of the child items.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

( container, pos )protectedtemplate
Method to manage awareness of when components are added to their\nrespective Container, firing an added event. ...

Method to manage awareness of when components are added to their\nrespective Container, firing an added event. References are\nestablished at add time rather than at render time.

\n\n

Allows addition of behavior when a Component is added to a\nContainer. At this stage, the Component is in the parent\nContainer's collection of child items. After calling the\nsuperclass's onAdded, the ownerCt reference will be present,\nand if configured with a ref, the refOwner will be set.

\n

Available since: 3.4.0

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Overrides: Ext.AbstractComponent.onAdded

This method is invoked before adding a new child Component. ...

This method is invoked before adding a new child Component. It\nis passed the new Component, and may be used to modify the\nComponent, or prepare the Container in some way. Returning\nfalse aborts the add operation.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

private ...

private

\n

Parameters

Ext.panel.Panel
view source
( )private
( names, callback, scope )private
...
\n

Parameters

Allows addition of behavior to the destroy operation. ...

Allows addition of behavior to the destroy operation.\nAfter calling the superclass's onDestroy, the Component will be destroyed.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Overrides: Ext.AbstractComponent.onDestroy

Allows addition of behavior to the disable operation. ...

Allows addition of behavior to the disable operation.\nAfter calling the superclass's onDisable, the Component will be disabled.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n
Invoked after a docked item is added to the Panel. ...

Invoked after a docked item is added to the Panel.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Invoked after a docked item is removed from the Panel. ...

Invoked after a docked item is removed from the Panel.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Allows addition of behavior to the enable operation. ...

Allows addition of behavior to the enable operation.\nAfter calling the superclass's onEnable, the Component will be enabled.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n
private ...

private

\n

Parameters

Ext.panel.Panel
view source
( [animateTarget], [callback], [scope] )protectedtemplate
Possibly animates down to a target element. ...

Possibly animates down to a target element.

\n\n

Allows addition of behavior to the hide operation. After\ncalling the superclass’s onHide, the Component will be hidden.

\n\n

Gets passed the same parameters as hide.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Overrides: Ext.Component.onHide

Listen for TAB events and wrap round if tabbing of either end of the Floater ...

Listen for TAB events and wrap round if tabbing of either end of the Floater

\n

Parameters

Mousedown brings to front, and programatically grabs focus unless the mousedown was on a focusable element ...

Mousedown brings to front, and programatically grabs focus unless the mousedown was on a focusable element

\n

Parameters

Ext.panel.Panel
view source
( e )private
...
\n

Parameters

Ext.panel.Panel
view source
( e )private
...
\n

Parameters

Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that need...

Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that needs to perform custom logic after a move occurs.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

  • x : Number

    The new x position.

    \n
  • y : Number

    The new y position.

    \n

Overrides: Ext.AbstractComponent.onPosition

( component, autoDestroy )protectedtemplate
This method is invoked after a new Component has been\nremoved. ...

This method is invoked after a new Component has been\nremoved. It is passed the Component which has been\nremoved. This method may be used to update any internal\nstructure which may depend upon the state of the child items.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Ext.panel.Panel
view source
( destroying )protectedtemplate
Method to manage awareness of when components are removed from their\nrespective Container, firing a removed event. ...

Method to manage awareness of when components are removed from their\nrespective Container, firing a removed event. References are properly\ncleaned up after removing a component from its owning container.

\n\n

Allows addition of behavior when a Component is removed from\nits parent Container. At this stage, the Component has been\nremoved from its parent Container's collection of child items,\nbut has not been destroyed (It will be destroyed if the parent\nContainer's autoDestroy is true, or if the remove call was\npassed a truthy second parameter). After calling the\nsuperclass's onRemoved, the ownerCt and the refOwner will not\nbe present.

\n

Available since: 3.4.0

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

  • destroying : Boolean

    Will be passed as true if the Container performing the remove operation will delete this\nComponent upon remove.

    \n

Overrides: Ext.AbstractComponent.onRemoved

( parentNode, containerIdx )protectedtemplate
Template method called when this Component's DOM structure is created. ...

Template method called when this Component's DOM structure is created.

\n\n

At this point, this Component's (and all descendants') DOM structure exists but it has not\nbeen layed out (positioned and sized).

\n\n

Subclasses which override this to gain access to the structure at render time should\ncall the parent class's method before attempting to access any child elements of the Component.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

  • parentNode : Ext.core.Element

    The parent Element in which this Component's encapsulating element is contained.

    \n
  • containerIdx : Number

    The index within the parent Container's child collection of this Component.

    \n
( width, height, oldWidth, oldHeight )protectedtemplate
Allows addition of behavior to the resize operation. ...

Allows addition of behavior to the resize operation.

\n\n

Called when Ext.resizer.Resizer#drag event is fired.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Overrides: Ext.AbstractComponent.onResize

Ext.panel.Panel
view source
( [animateTarget], [callback], [scope] )protectedtemplate
Allows addition of behavior to the show operation. ...

Allows addition of behavior to the show operation. After\ncalling the superclass's onShow, the Component will be visible.

\n\n

Override in subclasses where more complex behaviour is needed.

\n\n

Gets passed the same parameters as show.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Overrides: Ext.Component.onShow

( [callback], [scope] )protectedtemplate
Invoked after the afterShow method is complete. ...

Invoked after the afterShow method is complete.

\n\n

Gets passed the same callback and scope parameters that afterShow received.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

This method is called when any of the stateEvents are fired. ...

This method is called when any of the stateEvents are fired.

\n
Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n

Parameters

Ext.panel.Panel
view source
( direction, animate )private
...
\n

Parameters

Ext.panel.Panel
view source
( animate )private
...
\n

Parameters

Template method to do any post-blur processing. ...

Template method to do any post-blur processing.

\n

Parameters

Prepares a given class for observable instances. ...

Prepares a given class for observable instances. This method is called when a\nclass derives from this class or uses this class as a mixin.

\n

Parameters

  • T : Function

    The class constructor to prepare.

    \n
...
\n

Parameters

...
\n

Parameters

Returns the previous node in the Component tree in tree traversal order. ...

Returns the previous node in the Component tree in tree traversal order.

\n\n

Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will walk the\ntree in reverse order to attempt to find a match. Contrast with previousSibling.

\n

Parameters

Returns

  • Ext.Component

    The previous node (or the previous node which matches the selector).\nReturns null if there is no matching node.

    \n
Returns the previous sibling of this Component. ...

Returns the previous sibling of this Component.

\n\n

Optionally selects the previous sibling which matches the passed ComponentQuery\nselector.

\n\n

May also be referred to as prev()

\n\n

Note that this is limited to siblings, and if no siblings of the item match, null is returned. Contrast with\npreviousNode

\n

Parameters

Returns

  • Ext.Component

    The previous sibling (or the previous sibling which matches the selector).\nReturns null if there is no matching sibling.

    \n
...
\n

Parameters

Retrieves all descendant components which match the passed selector. ...

Retrieves all descendant components which match the passed selector.\nExecutes an Ext.ComponentQuery.query using this container as its root.

\n

Parameters

  • selector : String (optional)

    Selector complying to an Ext.ComponentQuery selector.\nIf no selector is specified all items will be returned.

    \n

Returns

Retrieves all descendant components which match the passed function. ...

Retrieves all descendant components which match the passed function.\nThe function should return false for components that are to be\nexcluded from the selection.

\n

Parameters

  • fn : Function

    The matcher function. It will be called with a single argument,\nthe component being tested.

    \n
  • scope : Object (optional)

    The scope in which to run the function. If not specified,\nit will default to the active component.

    \n

Returns

Finds a component at any level under this container matching the id/itemId. ...

Finds a component at any level under this container matching the id/itemId.\nThis is a shorthand for calling ct.down('#' + id);

\n

Parameters

Returns

Called by Component#doAutoRender\n\nRegister a Container configured floating: true with this Component's ZIndexManager. ...

Called by Component#doAutoRender

\n\n

Register a Container configured floating: true with this Component's ZIndexManager.

\n\n

Components added in this way will not participate in any layout, but will be rendered\nupon first show in the way that Windows are.

\n

Parameters

Relays selected events from the specified Observable as if the events were fired by this. ...

Relays selected events from the specified Observable as if the events were fired by this.

\n\n

For example if you are extending Grid, you might decide to forward some events from store.\nSo you can do this inside your initComponent:

\n\n
this.relayEvents(this.getStore(), ['load']);\n
\n\n

The grid instance will then have an observable 'load' event which will be passed the\nparameters of the store's load event and any function fired with the grid's load event\nwould have access to the grid using the this keyword.

\n

Parameters

  • origin : Object

    The Observable whose events this object is to relay.

    \n
  • events : String[]

    Array of event names to relay.

    \n
  • prefix : String (optional)

    A common prefix to prepend to the event names. For example:

    \n\n
    this.relayEvents(this.getStore(), ['load', 'clear'], 'store');\n
    \n\n

    Now the grid will forward 'load' and 'clear' events of store as 'storeload' and 'storeclear'.

    \n

Returns

  • Object

    A Destroyable object. An object which implements the destroy method which, when destroyed, removes all relayers. For example:

    \n\n
    this.storeRelayers = this.relayEvents(this.getStore(), ['load', 'clear'], 'store');\n
    \n\n

    Can be undone by calling

    \n\n
    Ext.destroy(this.storeRelayers);\n
    \n\n

    or

    \n\n
    this.store.relayers.destroy();\n
    \n
Removes a component from this container. ...

Removes a component from this container. Fires the beforeremove event\nbefore removing, then fires the remove event after the component has\nbeen removed.

\n

Available since: 2.3.0

\n

Parameters

Returns

Removes all components from this container. ...

Removes all components from this container.

\n

Available since: 2.3.0

\n

Parameters

Returns

Remove any anchor to this element. ...

Remove any anchor to this element. See anchorTo.

\n

Returns

Removes a CSS class from the body element. ...

Removes a CSS class from the body element.

\n

Parameters

  • cls : String

    The class to remove

    \n

Returns

Removes items in the childEls array based on the return value of a supplied test\nfunction. ...

Removes items in the childEls array based on the return value of a supplied test\nfunction. The function is called with a entry in childEls and if the test function\nreturn true, that entry is removed. If false, that entry is kept.

\n

Parameters

...

\n

Available since: 2.3.0

\n
Removes a CSS class from the top level element representing this component. ...

Removes a CSS class from the top level element representing this component.

\n

Parameters

Returns

Removes a cls to the uiCls array, which will also call removeUIClsFromElement and removes it from all\nelements of thi...

Removes a cls to the uiCls array, which will also call removeUIClsFromElement and removes it from all\nelements of this component.

\n

Parameters

  • cls : String/String[]

    A string or an array of strings to remove to the uiCls.

    \n
Removes the docked item from the panel. ...

Removes the docked item from the panel.

\n

Parameters

  • item : Ext.Component

    The Component to remove.

    \n
  • autoDestroy : Boolean (optional)

    Destroy the component after removal.

    \n
Removes an event handler. ...

Removes an event handler.

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n\n
  • fn : Function

    The handler to remove. This must be a reference to the function passed into the\naddListener call.

    \n\n
  • scope : Object (optional)

    The scope originally specified for the handler. It must be the same as the\nscope argument specified in the original call to addListener or the listener will not be removed.

    \n\n
Removes listeners that were added by the mon method. ...

Removes listeners that were added by the mon method.

\n

Parameters

  • item : Ext.util.Observable/Ext.Element

    The item from which to remove a listener/listeners.

    \n\n
  • ename : Object/String

    The event name, or an object containing event name properties.

    \n\n
  • fn : Function (optional)

    If the ename parameter was an event name, this is the handler function.

    \n\n
  • scope : Object (optional)

    If the ename parameter was an event name, this is the scope (this reference)\nin which the handler function is executed.

    \n\n
inherit docs\n\nRemove a single managed listener item ...

inherit docs

\n\n

Remove a single managed listener item

\n

Parameters

  • isClear : Boolean

    True if this is being called during a clear

    \n
  • managedListener : Object

    The managed listener item\nSee removeManagedListener for other args

    \n

Overrides: Ext.util.Observable.removeManagedListenerItem

...
\n

Parameters

inherit docs\n\nMethod which removes a specified UI + uiCls from the components element. ...

inherit docs

\n\n

Method which removes a specified UI + uiCls from the components element. The cls which is added to the element\nwill be: this.baseCls + '-' + ui.

\n

Parameters

  • ui : String

    The UI to add to the element.

    \n\n

Overrides: Ext.AbstractComponent.removeUIClsFromElement

inherit docs\n\nMethod which removes a specified UI from the components element. ...

inherit docs

\n\n

Method which removes a specified UI from the components element.

\n

Overrides: Ext.AbstractComponent.removeUIFromElement

( [container], [position] )
Renders the Component into the passed HTML element. ...

Renders the Component into the passed HTML element.

\n\n

If you are using a Container object to house this\nComponent, then do not use the render method.

\n\n

A Container's child Components are rendered by that Container's\nlayout manager when the Container is first rendered.

\n\n

If the Container is already rendered when a new child Component is added, you may need to call\nthe Container's doLayout to refresh the view which\ncauses any unrendered child Components to be rendered. This is required so that you can add\nmultiple child components if needed while only refreshing the layout once.

\n\n

When creating complex UIs, it is important to remember that sizing and positioning\nof child items is the responsibility of the Container's layout\nmanager. If you expect child items to be sized in response to user interactions, you must\nconfigure the Container with a layout manager which creates and manages the type of layout you\nhave in mind.

\n\n

Omitting the Container's layout config means that a basic\nlayout manager is used which does nothing but render child components sequentially into the\nContainer. No sizing or positioning will be performed in this situation.

\n

Parameters

  • container : Ext.Element/HTMLElement/String (optional)

    The element this Component should be\nrendered into. If it is being created from existing markup, this should be omitted.

    \n
  • position : String/Number (optional)

    The element ID or DOM node index within the container before\nwhich this component will be inserted (defaults to appending to the end of the container)

    \n
Ext.panel.Panel
view source
( )private
...
\n
Ext.panel.Panel
view source
( )private
...
\n
Resumes firing of the named event(s). ...

Resumes firing of the named event(s).

\n\n

After calling this method to resume events, the events will fire when requested to fire.

\n\n

Note that if the suspendEvent method is called multiple times for a certain event,\nthis converse method will have to be called the same number of times for it to resume firing.

\n

Parameters

  • eventName : String...

    Multiple event names to resume.

    \n
Resumes firing events (see suspendEvents). ...

Resumes firing events (see suspendEvents).

\n\n

If events were suspended using the queueSuspended parameter, then all events fired\nduring event suspension will be sent to any listeners now.

\n
...
\n

Parameters

( propName, state, [stateName] ) : Boolean
Conditionally saves a single property from this object to the given state object. ...

Conditionally saves a single property from this object to the given state object.\nThe idea is to only save state which has changed from the initial state so that\ncurrent software settings do not override future software settings. Only those\nvalues that are user-changed state should be saved.

\n

Parameters

  • propName : String

    The name of the property to save.

    \n
  • state : Object

    The state object in to which to save the property.

    \n
  • stateName : String (optional)

    The name to use for the property in state.

    \n

Returns

  • Boolean

    True if the property was saved, false if not.

    \n
Gathers additional named properties of the instance and adds their current values\nto the passed state object. ...

Gathers additional named properties of the instance and adds their current values\nto the passed state object.

\n

Parameters

  • propNames : String/String[]

    The name (or array of names) of the property to save.

    \n
  • state : Object

    The state object in to which to save the property values.

    \n

Returns

Saves the state of the object to the persistence store. ...

Saves the state of the object to the persistence store.

\n
( deltaX, deltaY, animate )
Scrolls this Component's target element by the passed delta values, optionally animating. ...

Scrolls this Component's target element by the passed delta values, optionally animating.

\n\n

All of the following are equivalent:

\n\n
 comp.scrollBy(10, 10, true);\n comp.scrollBy([10, 10], true);\n comp.scrollBy({ x: 10, y: 10 }, true);\n
\n

Parameters

  • deltaX : Number/Number[]/Object

    Either the x delta, an Array specifying x and y deltas or\nan object with \"x\" and \"y\" properties.

    \n
  • deltaY : Number/Boolean/Object

    Either the y delta, or an animate flag or config object.

    \n
  • animate : Boolean/Object

    Animate flag/config object if the delta values were passed separately.

    \n
Ensures that all effects queued after sequenceFx is called on this object are run in sequence. ...

Ensures that all effects queued after sequenceFx is called on this object are run in sequence. This is the\nopposite of syncFx.

\n

Returns

( [active], [newActive] )
This method is called internally by Ext.ZIndexManager to signal that a floating Component has either been\nmoved to th...

This method is called internally by Ext.ZIndexManager to signal that a floating Component has either been\nmoved to the top of its zIndex stack, or pushed from the top of its zIndex stack.

\n\n

If a Window is superceded by another Window, deactivating it hides its shadow.

\n\n

This method also fires the activate or\ndeactivate event depending on which action occurred.

\n

Parameters

  • active : Boolean (optional)

    True to activate the Component, false to deactivate it.

    \n

    Defaults to: false

  • newActive : Ext.Component (optional)

    The newly active Component which is taking over topmost zIndex position.

    \n
Sets the overflow on the content element of the component. ...

Sets the overflow on the content element of the component.

\n

Parameters

  • scroll : Boolean

    True to allow the Component to auto scroll.

    \n

Returns

Sets the body style according to the passed parameters. ...

Sets the body style according to the passed parameters.

\n

Parameters

  • style : Mixed

    A full style specification string, or object, or the name of a style property to set.

    \n
  • value : String

    If the first param was a style property name, the style property value.

    \n

Returns

Ext.panel.Panel
view source
( border )
...
\n

Parameters

  • border : String/Number

    The border, see border. If a falsey value is passed\nthe border will be removed.

    \n

Overrides: Ext.AbstractComponent.setBorder

This method changes the region config property for this border region. ...

This method changes the region config property for this border region. This is\nonly valid if this component is in a border layout (Ext.layout.container.Border).

\n\n

Defined in override Ext.layout.container.border.Region.

\n

Parameters

  • region : String

    The new region value (\"north\", \"south\", \"east\" or\n\"west\").

    \n

Returns

  • String

    The previous value of the region property.

    \n
Sets the element's box. ...

Sets the element's box. If animate is true then x, y, width, and height will be\nanimated concurrently.

\n

Parameters

  • box : Object

    The box to fill {x, y, width, height}

    \n
  • animate : Boolean/Object (optional)

    true for the default animation or a standard\nElement animation config object

    \n

Returns

...
\n

Parameters

( config, applyIfNotSet ) : Ext.Basechainableprivate
...
\n

Parameters

Returns

Enable or disable the component. ...

Enable or disable the component.

\n

Parameters

  • disabled : Boolean

    true to disable.

    \n
Sets the dock position of this component in its parent panel. ...

Sets the dock position of this component in its parent panel. Note that this only has effect if this item is part\nof the dockedItems collection of a parent that has a DockLayout (note that any Panel has a DockLayout by default)

\n

Parameters

  • dock : Object

    The dock position.

    \n
  • layoutParent : Boolean (optional)

    true to re-layout parent.

    \n

    Defaults to: false

Returns

...
\n

Parameters

Ext.panel.Panel
view source
( newGlyph )
Set the glyph for the panel's header. ...

Set the glyph for the panel's header. See Ext.panel.Header.glyph. It will\nfire the glyphchange event after completion.

\n

Parameters

  • newGlyph : Number/String

    The new glyph\nThis parameter expects a format consistent with that of glyph

    \n
Sets the height of the component. ...

Sets the height of the component. This method fires the resize event.

\n

Parameters

  • height : Number

    The new height to set. This may be one of:

    \n\n
      \n
    • A Number specifying the new height in the Element's Ext.Element.defaultUnits (by default, pixels).
    • \n
    • A String used to set the CSS height style.
    • \n
    • undefined to leave the height unchanged.
    • \n
    \n\n

Returns

Ext.panel.Panel
view source
( )private
...
\n
...
\n

Parameters

Ext.panel.Panel
view source
( newIcon )
Set the icon for the panel's header. ...

Set the icon for the panel's header. See Ext.panel.Header.icon. It will fire the\niconchange event after completion.

\n

Parameters

  • newIcon : String

    The new icon path

    \n
Ext.panel.Panel
view source
( newIconCls )
Set the iconCls for the panel's header. ...

Set the iconCls for the panel's header. See Ext.panel.Header.iconCls. It will fire the\niconclschange event after completion.

\n

Parameters

  • newIconCls : String

    The new CSS class name

    \n
...
\n

Parameters

This method allows you to show or hide a LoadMask on top of this component. ...

This method allows you to show or hide a LoadMask on top of this component.

\n

Parameters

  • load : Boolean/Object/String

    True to show the default LoadMask, a config object that will be passed to the\nLoadMask constructor, or a message String to show. False to hide the current LoadMask.

    \n
  • targetEl : Boolean (optional)

    True to mask the targetEl of this Component instead of the this.el. For example,\nsetting this to true on a Panel will cause only the body to be masked.

    \n

    Defaults to: false

Returns

  • Ext.LoadMask

    The LoadMask instance that has just been shown.

    \n
Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n\n

Sets the local x coordinate of this element using CSS style. When used on an\nabsolute positioned element this method is symmetrical with getLocalX, but\nmay not be symmetrical when used on a relatively positioned element.

\n

Parameters

  • x : Number

    The x coordinate. A value of null sets the left style to 'auto'.

    \n

Returns

Overrides: Ext.util.Positionable.setLocalX

Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n\n

Sets the local x and y coordinates of this element using CSS style. When used on an\nabsolute positioned element this method is symmetrical with getLocalXY, but\nmay not be symmetrical when used on a relatively positioned element.

\n

Parameters

  • x : Number/Array

    The x coordinate or an array containing [x, y]. A value of\nnull sets the left style to 'auto'

    \n
  • y : Number (optional)

    The y coordinate, required if x is not an array. A value of\nnull sets the top style to 'auto'

    \n

Returns

Overrides: Ext.util.Positionable.setLocalXY

Sets the local y coordinate of this element using CSS style. ...

Sets the local y coordinate of this element using CSS style. When used on an\nabsolute positioned element this method is symmetrical with getLocalY, but\nmay not be symmetrical when used on a relatively positioned element.

\n

Parameters

  • y : Number

    The y coordinate. A value of null sets the top style to 'auto'.

    \n

Returns

Overrides: Ext.util.Positionable.setLocalY

Sets the margin on the target element. ...

Sets the margin on the target element.

\n

Parameters

( overflowX, overflowY ) : Ext.Componentchainable
Sets the overflow x/y on the content element of the component. ...

Sets the overflow x/y on the content element of the component. The x/y overflow\nvalues can be any valid CSS overflow (e.g., 'auto' or 'scroll'). By default, the\nvalue is 'hidden'. Passing null for one of the values will erase the inline style.\nPassing undefined will preserve the current value.

\n

Parameters

  • overflowX : String

    The overflow-x value.

    \n
  • overflowY : String

    The overflow-y value.

    \n

Returns

Sets the page XY position of the component. ...

Sets the page XY position of the component. To set the left and top instead, use setPosition.\nThis method fires the move event.

\n

Parameters

  • x : Number/Number[]

    The new x position or an array of [x,y].

    \n
  • y : Number (optional)

    The new y position.

    \n
  • animate : Boolean/Object (optional)

    True to animate the Component into its new position. You may also pass an\nanimation configuration.

    \n

Returns

( x, [y], [animate] ) : Ext.Componentchainable
Sets the left and top of the component. ...

Sets the left and top of the component. To set the page XY position instead, use setPagePosition. This\nmethod fires the move event.

\n

Parameters

  • x : Number/Number[]/Object

    The new left, an array of [x,y], or animation config object containing x and y properties.

    \n
  • y : Number (optional)

    The new top.

    \n
  • animate : Boolean/Object (optional)

    If true, the Component is animated into its new position. You may also pass an\nanimation configuration.

    \n

Returns

Sets the element's position and size to the specified region. ...

Sets the element's position and size to the specified region. If animation is true\nthen width, height, x and y will be animated concurrently.

\n

Parameters

  • region : Ext.util.Region

    The region to fill

    \n
  • animate : Boolean/Object (optional)

    true for the default animation or a standard\nElement animation config object

    \n

Returns

Sets the weight config property for this component. ...

Sets the weight config property for this component. This is only valid if this\ncomponent is in a border layout (Ext.layout.container.Border).

\n\n

Defined in override Ext.layout.container.border.Region.

\n

Parameters

  • weight : Number

    The new weight value.

    \n

Returns

  • Number

    The previous value of the weight property.

    \n
Sets the width and height of this Component. ...

Sets the width and height of this Component. This method fires the resize event. This method can accept\neither width and height as separate arguments, or you can pass a size object like {width:10, height:20}.

\n

Parameters

  • width : Number/String/Object

    The new width to set. This may be one of:

    \n\n
      \n
    • A Number specifying the new width in the Element's Ext.Element.defaultUnits (by default, pixels).
    • \n
    • A String used to set the CSS width style.
    • \n
    • A size object in the format {width: widthValue, height: heightValue}.
    • \n
    • undefined to leave the width unchanged.
    • \n
    \n\n
  • height : Number/String

    The new height to set (not required if a size object is passed as the first arg).\nThis may be one of:

    \n\n
      \n
    • A Number specifying the new height in the Element's Ext.Element.defaultUnits (by default, pixels).
    • \n
    • A String used to set the CSS height style. Animation may not be used.
    • \n
    • undefined to leave the height unchanged.
    • \n
    \n\n

Returns

Ext.panel.Panel
view source
( newTitle )
Set a title for the panel's header. ...

Set a title for the panel's header. See Ext.panel.Header.title.

\n

Parameters

Ext.panel.Panel
view source
( ui )
Sets the UI for the component. ...

Sets the UI for the component. This will remove any existing UIs on the component. It will also loop through any\nuiCls set on the component and rename them so they include the new UI.

\n

Parameters

  • ui : String

    The new UI for the component.

    \n

Overrides: Ext.AbstractComponent.setUI

Convenience function to hide or show this component by Boolean. ...

Convenience function to hide or show this component by Boolean.

\n

Available since: 1.1.0

\n

Parameters

  • visible : Boolean

    true to show, false to hide.

    \n

Returns

Sets the width of the component. ...

Sets the width of the component. This method fires the resize event.

\n

Parameters

  • width : Number

    The new width to setThis may be one of:

    \n\n\n\n

Returns

Sets the X position of the DOM element based on page coordinates. ...

Sets the X position of the DOM element based on page coordinates.

\n

Parameters

  • The : Number

    X position

    \n
  • animate : Boolean/Object (optional)

    True for the default animation, or a standard\nElement animation config object

    \n

Returns

Overrides: Ext.util.Positionable.setX

Sets the position of the DOM element in page coordinates. ...

Sets the position of the DOM element in page coordinates.

\n

Parameters

  • pos : Number[]

    Contains X & Y [x, y] values for new position (coordinates\nare page-based)

    \n
  • animate : Boolean/Object (optional)

    True for the default animation, or a standard\nElement animation config object

    \n

Returns

Overrides: Ext.util.Positionable.setXY

Sets the Y position of the DOM element based on page coordinates. ...

Sets the Y position of the DOM element based on page coordinates.

\n

Parameters

  • The : Number

    Y position

    \n
  • animate : Boolean/Object (optional)

    True for the default animation, or a standard\nElement animation config object

    \n

Returns

Overrides: Ext.util.Positionable.setY

z-index is managed by the zIndexManager and may be overwritten at any time. ...

z-index is managed by the zIndexManager and may be overwritten at any time.\nReturns the next z-index to be used.\nIf this is a Container, then it will have rebased any managed floating Components,\nand so the next available z-index will be approximately 10000 above that.

\n

Parameters

...
\n

Parameters

Inject a reference to the function which applies the render template into the framing template. ...

Inject a reference to the function which applies the render template into the framing template. The framing template\nwraps the content.

\n

Parameters

( [animateTarget], [callback], [scope] ) : Ext.Componentchainable
Shows this Component, rendering it first if autoRender or floating are true. ...

Shows this Component, rendering it first if autoRender or floating are true.

\n\n

After being shown, a floating Component (such as a Ext.window.Window), is activated it and\nbrought to the front of its z-index stack.

\n

Parameters

  • animateTarget : String/Ext.Element (optional)

    only valid for floating Components such as Windows or ToolTips, or regular Components which have been configured\nwith floating: true. The target from which the Component should animate from while opening.

    \n

    Defaults to: null

  • callback : Function (optional)

    A callback function to call after the Component is displayed.\nOnly necessary if animation was specified.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the callback is executed.\nDefaults to this Component.

    \n

Returns

Overrides: Ext.AbstractComponent.show

( x, [y], [animate] ) : Ext.Componentchainable
Displays component at specific xy position. ...

Displays component at specific xy position.\nA floating component (like a menu) is positioned relative to its ownerCt if any.\nUseful for popping up a context menu:

\n\n
listeners: {\n    itemcontextmenu: function(view, record, item, index, event, options) {\n        Ext.create('Ext.menu.Menu', {\n            width: 100,\n            height: 100,\n            margin: '0 0 10 0',\n            items: [{\n                text: 'regular item 1'\n            },{\n                text: 'regular item 2'\n            },{\n                text: 'regular item 3'\n            }]\n        }).showAt(event.getXY());\n    }\n}\n
\n

Parameters

  • x : Number/Number[]

    The new x position or array of [x,y].

    \n
  • y : Number (optional)

    The new y position

    \n
  • animate : Boolean/Object (optional)

    True to animate the Component into its new position. You may also pass an\nanimation configuration.

    \n

Returns

( component, [position], [offsets] ) : Ext.Componentchainable
Shows this component by the specified Component or Element. ...

Shows this component by the specified Component or Element.\nUsed when this component is floating.

\n

Parameters

Returns

Ext.panel.Panel
view source
( )private
...
\n
Ext.panel.Panel
view source
( )private
This method begins the slide out of the floated panel. ...

This method begins the slide out of the floated panel.

\n
Ext.panel.Panel
view source
( )private
This method cleans up after the slide out of the floated panel. ...

This method cleans up after the slide out of the floated panel.

\n
Get the reference to the class from which this object was instantiated. ...

Get the reference to the class from which this object was instantiated. Note that unlike self,\nthis.statics() is scope-independent and it always returns the class from which it was called, regardless of what\nthis points to during run-time

\n\n
Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n
\n

Returns

Stops any running effects and clears this object's internal effects queue if it contains any additional effects\nthat ...

Stops any running effects and clears this object's internal effects queue if it contains any additional effects\nthat haven't started yet.

\n

Returns

Stops any running effects and clears this object's internal effects queue if it contains any additional effects\nthat ...

Stops any running effects and clears this object's internal effects queue if it contains any additional effects\nthat haven't started yet.

\n
\n

This method has been deprecated since 4.0

\n

Replaced by stopAnimation

\n\n
\n

Returns

Suspends firing of the named event(s). ...

Suspends firing of the named event(s).

\n\n

After calling this method to suspend events, the events will no longer fire when requested to fire.

\n\n

Note that if this is called multiple times for a certain event, the converse method\nresumeEvent will have to be called the same number of times for it to resume firing.

\n

Parameters

  • eventName : String...

    Multiple event names to suspend.

    \n
Suspends the firing of all events. ...

Suspends the firing of all events. (see resumeEvents)

\n

Parameters

  • queueSuspended : Boolean

    Pass as true to queue up suspended events to be fired\nafter the resumeEvents call instead of discarding all suspended events.

    \n
Ensures that all effects queued after syncFx is called on this object are run concurrently. ...

Ensures that all effects queued after syncFx is called on this object are run concurrently. This is the opposite\nof sequenceFx.

\n

Returns

synchronizes the hidden state of this component with the state of its hierarchy ...

synchronizes the hidden state of this component with the state of its hierarchy

\n
Sends this Component to the back of (lower z-index than) any other visible windows ...

Sends this Component to the back of (lower z-index than) any other visible windows

\n

Returns

Brings this floating Component to the front of any other visible, floating Components managed by the same\nZIndexManag...

Brings this floating Component to the front of any other visible, floating Components managed by the same\nZIndexManager

\n\n

If this Component is modal, inserts the modal mask just below this Component in the z-index stack.

\n

Parameters

  • preventFocus : Boolean (optional)

    Specify true to prevent the Component from being focused.

    \n

    Defaults to: false

Returns

Ext.panel.Panel
view source
( ) : Ext.panel.Panelchainable
Shortcut for performing an expand or collapse based on the current state of the panel. ...

Shortcut for performing an expand or collapse based on the current state of the panel.

\n

Returns

Translates the passed page coordinates into left/top css values for the element ...

Translates the passed page coordinates into left/top css values for the element

\n

Parameters

  • x : Number/Array

    The page x or an array containing [x, y]

    \n
  • y : Number (optional)

    The page y, required if x is not an array

    \n

Returns

  • Object

    An object with left and top properties. e.g.\n{left: (value), top: (value)}

    \n
Translates the passed page coordinates into x and y css values for the element ...

Translates the passed page coordinates into x and y css values for the element

\n

Parameters

  • x : Number/Array

    The page x or an array containing [x, y]

    \n
  • y : Number (optional)

    The page y, required if x is not an array

    \n

Returns

  • Object

    An object with x and y properties. e.g.\n{x: (value), y: (value)}

    \n
( eventName, fn, [scope] )
Shorthand for removeListener. ...

Shorthand for removeListener.

\n\n

Removes an event handler.

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n\n
  • fn : Function

    The handler to remove. This must be a reference to the function passed into the\naddListener call.

    \n\n
  • scope : Object (optional)

    The scope originally specified for the handler. It must be the same as the\nscope argument specified in the original call to addListener or the listener will not be removed.

    \n\n
Ext.panel.Panel
view source
( show, matchPosition )private
...
\n

Parameters

Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n

Parameters

Navigates up the ownership hierarchy searching for an ancestor Container which matches any passed simple selector or ...

Navigates up the ownership hierarchy searching for an ancestor Container which matches any passed simple selector or component.

\n\n

Important. There is not a universal upwards navigation pointer. There are several upwards relationships\nsuch as the button which activates a menu, or the\nmenu item which activated a submenu, or the\ncolumn header which activated the column menu.

\n\n

These differences are abstracted away by this method.

\n\n

Example:

\n\n
var owningTabPanel = grid.up('tabpanel');\n
\n

Parameters

  • selector : String/Ext.Component (optional)

    The simple selector component or actual component to test. If not passed the immediate owner/activater is returned.

    \n
  • limit : String/Number/Ext.Component (optional)

    This may be a selector upon which to stop the upward scan, or a limit of teh number of steps, or Component reference to stop on.

    \n

Returns

( htmlOrData, [loadScripts], [callback] )
Update the content area of a component. ...

Update the content area of a component.

\n

Available since: 3.4.0

\n

Parameters

  • htmlOrData : String/Object

    If this component has been configured with a template via the tpl config then\nit will use this argument as data to populate the template. If this component was not configured with a template,\nthe components content area will be updated via Ext.Element update.

    \n
  • loadScripts : Boolean (optional)

    Only legitimate when using the html configuration.

    \n

    Defaults to: false

  • callback : Function (optional)

    Only legitimate when using the html configuration. Callback to execute when\nscripts have finished loading.

    \n
Injected as an override by Ext.Aria.initialize ...

Injected as an override by Ext.Aria.initialize

\n
Sets the current box measurements of the component's underlying element. ...

Sets the current box measurements of the component's underlying element.

\n

Parameters

  • box : Object

    An object in the format {x, y, width, height}

    \n

Returns

Ext.panel.Panel
view source
( )private
...
\n
Ext.panel.Panel
view source
( force )private
Create, hide, or show the header component as appropriate based on the current config. ...

Create, hide, or show the header component as appropriate based on the current config.

\n

Parameters

  • force : Boolean

    True to force the header to be created

    \n
Updates this component's layout. ...

Updates this component's layout. If this update affects this components ownerCt,\nthat component's updateLayout method will be called to perform the layout instead.\nOtherwise, just this component (and its child items) will layout.

\n

Parameters

  • options : Object (optional)

    An object with layout options.

    \n
    • defer : Boolean

      true if this layout should be deferred.

      \n
    • isRoot : Boolean

      true if this layout should be the root of the layout.

      \n
Defined By

Static Methods

( config )privatestatic
...
\n

Parameters

( members )chainableprivatestatic
...
\n

Parameters

( name, member )chainableprivatestatic
...
\n

Parameters

( members )chainablestatic
Add methods / properties to the prototype of this class. ...

Add methods / properties to the prototype of this class.

\n\n
Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.addMembers({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n
\n

Parameters

( members ) : Ext.Basechainablestatic
Add / override static properties of this class. ...

Add / override static properties of this class.

\n\n
Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n
\n

Parameters

Returns

( xtype )chainableprivatestatic
...
\n

Parameters

( fromClass, members ) : Ext.Basechainableprivatestatic
Borrow another class' members to the prototype of this class. ...

Borrow another class' members to the prototype of this class.

\n\n
Ext.define('Bank', {\n    money: '$$$',\n    printMoney: function() {\n        alert('$$$$$$$');\n    }\n});\n\nExt.define('Thief', {\n    ...\n});\n\nThief.borrow(Bank, ['money', 'printMoney']);\n\nvar steve = new Thief();\n\nalert(steve.money); // alerts '$$$'\nsteve.printMoney(); // alerts '$$$$$$$'\n
\n

Parameters

  • fromClass : Ext.Base

    The class to borrow members from

    \n
  • members : Array/String

    The names of the members to borrow

    \n

Returns

Create a new instance of this Class. ...

Create a new instance of this Class.

\n\n
Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n
\n\n

All parameters are passed to the constructor of the class.

\n

Returns

( alias, origin )static
Create aliases for existing prototype methods. ...

Create aliases for existing prototype methods. Example:

\n\n
Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -> test.method1()\n
\n

Parameters

( config )privatestatic
...
\n

Parameters

Get the current class' name in string format. ...

Get the current class' name in string format.

\n\n
Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n
\n

Returns

( )deprecatedstatic
Adds members to class. ...

Adds members to class.

\n
\n

This method has been deprecated since 4.1

\n

Use addMembers instead.

\n\n
\n
( name, mixinClass )privatestatic
Used internally by the mixins pre-processor ...

Used internally by the mixins pre-processor

\n

Parameters

( fn, scope )chainableprivatestatic
...
\n

Parameters

( members ) : Ext.Basechainabledeprecatedstatic
Override members of this class. ...

Override members of this class. Overridden methods can be invoked via\ncallParent.

\n\n
Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        this.callParent(arguments);\n\n        alert(\"Meeeeoooowwww\");\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n
\n\n

As of 4.1, direct use of this method is deprecated. Use Ext.define\ninstead:

\n\n
Ext.define('My.CatOverride', {\n    override: 'My.Cat',\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        this.callParent(arguments);\n\n        alert(\"Meeeeoooowwww\");\n    }\n});\n
\n\n

The above accomplishes the same result but can be managed by the Ext.Loader\nwhich can properly order the override and its target class and the build process\ncan determine whether the override is needed based on the required state of the\ntarget class (My.Cat).

\n
\n

This method has been deprecated since 4.1.0

\n

Use Ext.define instead

\n\n
\n

Parameters

  • members : Object

    The properties to add to this class. This should be\nspecified as an object literal containing one or more properties.

    \n

Returns

Defined By

Events

Fires after a Component has been visually activated. ...

Fires after a Component has been visually activated.

\n

Parameters

( this, component, index, eOpts )
Fires after any Ext.Component is added or inserted into the container. ...

Fires after any Ext.Component is added or inserted into the container.

\n\n

This event bubbles: 'add' will also be fired when Component is added to any of\nthe child containers or their childern or ...

\n

Available since: 2.3.0

\n

Parameters

( this, container, pos, eOpts )
Fires after a Component had been added to a Container. ...

Fires after a Component had been added to a Container.

\n

Available since: 3.4.0

\n

Parameters

Fires when the components in this container are arranged by the associated layout manager. ...

Fires when the components in this container are arranged by the associated layout manager.

\n

Available since: 2.3.0

\n

Parameters

Fires after the component rendering is finished. ...

Fires after the component rendering is finished.

\n\n

The afterrender event is fired after this Component has been rendered, been postprocessed by any\nafterRender method defined for the Component.

\n

Available since: 3.4.0

\n

Parameters

Fires before a Component has been visually activated. ...

Fires before a Component has been visually activated. Returning false from an event listener can prevent\nthe activate from occurring.

\n

Parameters

Fires before any Ext.Component is added or inserted into the container. ...

Fires before any Ext.Component is added or inserted into the container.\nA handler can return false to cancel the add.

\n

Available since: 2.3.0

\n

Parameters

Ext.panel.Panel
view source
( panel, eOpts )
Fires before the user closes the panel. ...

Fires before the user closes the panel. Return false from any listener to stop the close event being\nfired

\n

Parameters

Ext.panel.Panel
view source
( p, direction, animate, eOpts )
Fires before this panel is collapsed. ...

Fires before this panel is collapsed. Return false to prevent the collapse.

\n

Parameters

Fires before a Component has been visually deactivated. ...

Fires before a Component has been visually deactivated. Returning false from an event listener can\nprevent the deactivate from occurring.

\n

Parameters

Fires before the component is destroyed. ...

Fires before the component is destroyed. Return false from an event handler to stop the\ndestroy.

\n

Available since: 1.1.0

\n

Parameters

Ext.panel.Panel
view source
( p, animate, eOpts )
Fires before this panel is expanded. ...

Fires before this panel is expanded. Return false to prevent the expand.

\n

Parameters

Fires before the component is hidden when calling the hide method. ...

Fires before the component is hidden when calling the hide method. Return false from an event\nhandler to stop the hide.

\n

Available since: 1.1.0

\n

Parameters

Fires before any Ext.Component is removed from the container. ...

Fires before any Ext.Component is removed from the container. A handler can return\nfalse to cancel the remove.

\n

Available since: 2.3.0

\n

Parameters

Fires before the component is rendered. ...

Fires before the component is rendered. Return false from an event handler to stop the\nrender.

\n

Available since: 1.1.0

\n

Parameters

Fires before the component is shown when calling the show method. ...

Fires before the component is shown when calling the show method. Return false from an event\nhandler to stop the show.

\n

Available since: 1.1.0

\n

Parameters

Fires before the state of the object is restored. ...

Fires before the state of the object is restored. Return false from an event handler to stop the restore.

\n

Parameters

  • this : Ext.state.Stateful
    \n
  • state : Object

    The hash of state values returned from the StateProvider. If this\nevent is not vetoed, then the state object is passed to applyState. By default,\nthat simply copies property values into this object. The method maybe overriden to\nprovide custom state restoration.

    \n
  • eOpts : Object

    The options object passed to Ext.util.Observable.addListener.

    \n\n\n\n
Fires before the state of the object is saved to the configured state provider. ...

Fires before the state of the object is saved to the configured state provider. Return false to stop the save.

\n

Parameters

Fires when this Component loses focus. ...

Fires when this Component loses focus.

\n

Parameters

( this, width, height, eOpts )
Fires one time - after the component has been laid out for the first time at its initial size. ...

Fires one time - after the component has been laid out for the first time at its initial size.

\n

Parameters

Ext.panel.Panel
view source
( panel, eOpts )
Fires when the user closes the panel. ...

Fires when the user closes the panel.

\n

Parameters

Ext.panel.Panel
view source
( p, eOpts )
Fires after this Panel has collapsed. ...

Fires after this Panel has collapsed.

\n

Parameters

Fires after a Component has been visually deactivated. ...

Fires after a Component has been visually deactivated.

\n

Parameters

Fires after the component is destroyed. ...

Fires after the component is destroyed.

\n

Available since: 1.1.0

\n

Parameters

Fires after the component is disabled. ...

Fires after the component is disabled.

\n

Available since: 1.1.0

\n

Parameters

Fires when any Ext.Component is added or inserted as a docked item. ...

Fires when any Ext.Component is added or inserted as a docked item.

\n

Parameters

Fires when any Ext.Component is removed from the docked items. ...

Fires when any Ext.Component is removed from the docked items.

\n

Parameters

Fires after the component is enabled. ...

Fires after the component is enabled.

\n

Available since: 1.1.0

\n

Parameters

Ext.panel.Panel
view source
( p, eOpts )
Fires after this Panel has expanded. ...

Fires after this Panel has expanded.

\n

Parameters

Ext.panel.Panel
view source
( eOpts )
Fires after a collapsed Panel has been \"floated\" by clicking on\nit's header. ...

Fires after a collapsed Panel has been \"floated\" by clicking on\nit's header. Only applicable when the Panel is an item in a\nBorder Layout.

\n

Parameters

Fires when this Component receives focus. ...

Fires when this Component receives focus.

\n

Parameters

Ext.panel.Panel
view source
( this, newGlyph, oldGlyph, eOpts )
Fired when the Panel glyph has been changed by the setGlyph method. ...

Fired when the Panel glyph has been changed by the setGlyph method.

\n

Parameters

Fires after the component is hidden. ...

Fires after the component is hidden. Fires after the component is hidden when calling the hide\nmethod.

\n

Available since: 1.1.0

\n

Parameters

Ext.panel.Panel
view source
( p, newIcon, oldIcon, eOpts )
Fires after the Panel icon has been set or changed. ...

Fires after the Panel icon has been set or changed.

\n

Parameters

Ext.panel.Panel
view source
( p, newIconCls, oldIconCls, eOpts )
Fires after the Panel iconCls has been set or changed. ...

Fires after the Panel iconCls has been set or changed.

\n

Parameters

Fires after the component is moved. ...

Fires after the component is moved.

\n

Parameters

Fires after any Ext.Component is removed from the container. ...

Fires after any Ext.Component is removed from the container.

\n\n

This event bubbles: 'remove' will also be fired when Component is removed from any of\nthe child containers or their children or ...

\n

Available since: 2.3.0

\n

Parameters

Fires when a component is removed from an Ext.container.Container ...

Fires when a component is removed from an Ext.container.Container

\n

Available since: 3.4.0

\n

Parameters

Fires after the component markup is rendered. ...

Fires after the component markup is rendered.

\n

Available since: 1.1.0

\n

Parameters

( this, width, height, oldWidth, oldHeight, eOpts )
Fires after the component is resized. ...

Fires after the component is resized. Note that this does not fire when the component is first laid out at its initial\nsize. To hook that point in the life cycle, use the boxready event.

\n

Parameters

Fires after the component is shown when calling the show method. ...

Fires after the component is shown when calling the show method.

\n

Available since: 1.1.0

\n

Parameters

Fires after the state of the object is restored. ...

Fires after the state of the object is restored.

\n

Parameters

  • this : Ext.state.Stateful
    \n
  • state : Object

    The hash of state values returned from the StateProvider. This is passed\nto applyState. By default, that simply copies property values into this\nobject. The method maybe overriden to provide custom state restoration.

    \n
  • eOpts : Object

    The options object passed to Ext.util.Observable.addListener.

    \n\n\n\n
Fires after the state of the object is saved to the configured state provider. ...

Fires after the state of the object is saved to the configured state provider.

\n

Parameters

Ext.panel.Panel
view source
( p, newTitle, oldTitle, eOpts )
Fires after the Panel title has been set or changed. ...

Fires after the Panel title has been set or changed.

\n

Parameters

Ext.panel.Panel
view source
( eOpts )
Fires after a \"floated\" Panel has returned to it's collapsed state\nas a result of the mouse leaving the Panel. ...

Fires after a \"floated\" Panel has returned to it's collapsed state\nas a result of the mouse leaving the Panel. Only applicable when\nthe Panel is an item in a\nBorder Layout.

\n

Parameters

Defined By

CSS Variables

Ext.panel.Panel
view source
: $border-width-threshold
The maximum width a Panel's border can be before resizer handles are embedded into the borders using negative absolut...

The maximum width a Panel's border can be before resizer handles are embedded into the borders using negative absolute positions.

\n\n

This defaults to 2, so that in the classic theme which uses 1 pixel borders, resize handles are in the content area\nwithin the border as they always have been.

\n\n

In the Neptune theme, the handles are embedded into the 5 pixel wide borders of any framed panel.

\n

Defaults to: 2

True to include the \"default-framed\" panel UI ...

True to include the \"default-framed\" panel UI

\n

Defaults to: $include-default-uis

Ext.panel.Panel
view source
: boolean
True to include the \"default\" panel UI ...

True to include the \"default\" panel UI

\n

Defaults to: $include-default-uis

The direction to strech the background-gradient of bottom docked Headers when slicing images\nfor IE using Sencha Cmd ...

The direction to strech the background-gradient of bottom docked Headers when slicing images\nfor IE using Sencha Cmd

\n

Defaults to: top

The direction to strech the background-gradient of left docked Headers when slicing images\nfor IE using Sencha Cmd ...

The direction to strech the background-gradient of left docked Headers when slicing images\nfor IE using Sencha Cmd

\n

Defaults to: right

The direction to strech the background-gradient of right docked Headers when slicing images\nfor IE using Sencha Cmd ...

The direction to strech the background-gradient of right docked Headers when slicing images\nfor IE using Sencha Cmd

\n

Defaults to: left

The direction to strech the background-gradient of top docked Headers when slicing images\nfor IE using Sencha Cmd ...

The direction to strech the background-gradient of top docked Headers when slicing images\nfor IE using Sencha Cmd

\n

Defaults to: bottom

Ext.panel.Panel
view source
: color
The base color of Panels ...

The base color of Panels

\n

Defaults to: $base-color

The default body background-color of Panels ...

The default body background-color of Panels

\n

Defaults to: #fff

The default border-color of the Panel body ...

The default border-color of the Panel body

\n

Defaults to: $panel-border-color

Ext.panel.Panel
view source
: string
The default border-style of Panels ...

The default border-style of Panels

\n

Defaults to: solid

Ext.panel.Panel
view source
: number
The default border-width of the Panel body ...

The default border-width of the Panel body

\n

Defaults to: 1px

Ext.panel.Panel
view source
: color
The default color of text inside a Panel's body ...

The default color of text inside a Panel's body

\n

Defaults to: #000

Ext.panel.Panel
view source
: number
The default font-size of the Panel body ...

The default font-size of the Panel body

\n

Defaults to: $font-size

Ext.panel.Panel
view source
: string
The default font-weight of the Panel body ...

The default font-weight of the Panel body

\n

Defaults to: normal

Ext.panel.Panel
view source
: color
The default border-color of Panels ...

The default border-color of Panels

\n

Defaults to: $panel-base-color

Ext.panel.Panel
view source
: number
The default border-width of Panels ...

The default border-width of Panels

\n

Defaults to: 1px

The background-color of framed Panels ...

The background-color of framed Panels

\n

Defaults to: #fff

Ext.panel.Panel
view source
: color
The base color of the framed Panels ...

The base color of the framed Panels

\n

Defaults to: $panel-base-color

The border-width of the body element of framed Panels ...

The border-width of the body element of framed Panels

\n

Defaults to: 1px

The border-color of framed Panels ...

The border-color of framed Panels

\n

Defaults to: $panel-border-color

The border-radius of framed Panels ...

The border-radius of framed Panels

\n

Defaults to: 4px

Ext.panel.Panel
view source
: string
The border-style of framed Panels ...

The border-style of framed Panels

\n

Defaults to: solid

Ext.panel.Panel
view source
: number
The border-width of framed Panels ...

The border-width of framed Panels

\n

Defaults to: 1px

The border-width of framed Panel Headers ...

The border-width of framed Panel Headers

\n

Defaults to: $panel-header-border-width

The inner border-color of framed Panel Headers ...

The inner border-color of framed Panel Headers

\n

Defaults to: #fff

The inner border-width of framed Panel Headers ...

The inner border-width of framed Panel Headers

\n

Defaults to: 0

Ext.panel.Panel
view source
: number/list
The padding of framed Panel Headers ...

The padding of framed Panel Headers

\n

Defaults to: $panel-header-padding

Ext.panel.Panel
view source
: number
The padding of framed Panels ...

The padding of framed Panels

\n

Defaults to: 4px

Ext.panel.Panel
view source
: number
The opacity of ghost Panels while dragging ...

The opacity of ghost Panels while dragging

\n

Defaults to: 0.50

The background-color of the Panel Header ...

The background-color of the Panel Header

\n

Defaults to: $panel-base-color

The background-gradient of the Panel Header. ...

The background-gradient of the Panel Header. Can be either the name of a predefined\ngradient or a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

\n

Defaults to: null

The border-color of the Panel Header ...

The border-color of the Panel Header

\n

Defaults to: $panel-border-color

The border-style of Panel Headers ...

The border-style of Panel Headers

\n

Defaults to: solid

The border-width of Panel Headers ...

The border-width of Panel Headers

\n

Defaults to: $panel-border-width

Ext.panel.Panel
view source
: color
The text color of the Panel Header ...

The text color of the Panel Header

\n

Defaults to: $color

Ext.panel.Panel
view source
: string
The font-family of Panel Headers ...

The font-family of Panel Headers

\n

Defaults to: $font-family

Ext.panel.Panel
view source
: number
The font-size of Panel Headers ...

The font-size of Panel Headers

\n

Defaults to: $font-size

Ext.panel.Panel
view source
: string
The font-weight of Panel Headers ...

The font-weight of Panel Headers

\n

Defaults to: bold

The color of the Panel Header glyph icon ...

The color of the Panel Header glyph icon

\n

Defaults to: $panel-header-color

The opacity of the Panel Header glyph icon ...

The opacity of the Panel Header glyph icon

\n

Defaults to: .5

The background-position of the Panel Header icon ...

The background-position of the Panel Header icon

\n

Defaults to: center center

Ext.panel.Panel
view source
: number
The height of the Panel Header icon ...

The height of the Panel Header icon

\n

Defaults to: 16px

The space between the Panel Header icon and text ...

The space between the Panel Header icon and text

\n

Defaults to: 4px

Ext.panel.Panel
view source
: number
The width of the Panel Header icon ...

The width of the Panel Header icon

\n

Defaults to: 16px

The inner border-color of the Panel Header ...

The inner border-color of the Panel Header

\n

Defaults to: #fff

The inner border-width of the Panel Header ...

The inner border-width of the Panel Header

\n

Defaults to: 0

Ext.panel.Panel
view source
: number
The line-height of Panel Headers ...

The line-height of Panel Headers

\n

Defaults to: 16px

Ext.panel.Panel
view source
: number/list
The padding of Panel Headers ...

The padding of Panel Headers

\n

Defaults to: 4px 5px

Ext.panel.Panel
view source
: number/list
The padding of the Panel Header's text element ...

The padding of the Panel Header's text element

\n

Defaults to: 0

The text-transform of Panel Headers ...

The text-transform of Panel Headers

\n

Defaults to: none

True to include neptune style border management rules. ...

True to include neptune style border management rules.

\n

Defaults to: false

The background sprite to use for Panel Tools ...

The background sprite to use for Panel Tools

\n

Defaults to: 'tools/tool-sprites'

Ext.panel.Panel
view source
: number
The space between the Panel Tools ...

The space between the Panel Tools

\n

Defaults to: 4px

The color to apply to the border that wraps the body and docked items in a framed\npanel. ...

The color to apply to the border that wraps the body and docked items in a framed\npanel. The presence of the wrap border in a framed panel is controlled by the\nborder config. Only applicable when $panel-include-border-management-rules is\ntrue.

\n

Defaults to: $panel-border-color

Ext.panel.Panel
view source
: number
The width to apply to the border that wraps the body and docked items in a framed\npanel. ...

The width to apply to the border that wraps the body and docked items in a framed\npanel. The presence of the wrap border in a framed panel is controlled by the\nborder config. Only applicable when $panel-include-border-management-rules is\ntrue.

\n

Defaults to: 1px

Defined By

CSS Mixins

Ext.panel.Panel
view source
( $ui-label, [$ui-border-color], [$ui-border-radius], [$ui-border-width], [$ui-padding], [$ui-header-color], [$ui-header-font-family], [$ui-header-font-size], [$ui-header-font-weight], [$ui-header-line-height], [$ui-header-border-color], [$ui-header-border-width], [$ui-header-border-style], [$ui-header-background-color], [$ui-header-background-gradient], [$ui-header-inner-border-color], [$ui-header-inner-border-width], [$ui-header-text-padding], [$ui-header-text-transform], [$ui-header-padding], [$ui-header-icon-width], [$ui-header-icon-height], [$ui-header-icon-spacing], [$ui-header-icon-background-position], [$ui-header-glyph-color], [$ui-header-glyph-opacity], [$ui-tool-spacing], [$ui-tool-background-image], [$ui-body-color], [$ui-body-border-color], [$ui-body-border-width], [$ui-body-border-style], [$ui-body-background-color], [$ui-body-font-size], [$ui-body-font-weight], [$ui-background-stretch-top], [$ui-background-stretch-bottom], [$ui-background-stretch-right], [$ui-background-stretch-left], [$ui-include-border-management-rules], [$ui-wrap-border-color], [$ui-wrap-border-width] )
Creates a visual theme for a Panel ...

Creates a visual theme for a Panel

\n
  • $ui-label : string

    The name of the UI being created. Can not included spaces or special punctuation\n(used in CSS class names).

    \n
  • $ui-border-color : color (optional)

    The border-color of the Panel

    \n

    Defaults to: $panel-border-color

  • $ui-border-radius : number (optional)

    The border-radius of the Panel

    \n

    Defaults to: $panel-border-radius

  • $ui-border-width : number (optional)

    The border-width of the Panel

    \n

    Defaults to: $panel-border-width

  • $ui-padding : number (optional)

    The padding of the Panel

    \n

    Defaults to: $panel-padding

  • $ui-header-color : color (optional)

    The text color of the Header

    \n

    Defaults to: $panel-header-color

  • $ui-header-font-family : string (optional)

    The font-family of the Header

    \n

    Defaults to: $panel-header-font-family

  • $ui-header-font-size : number (optional)

    The font-size of the Header

    \n

    Defaults to: $panel-header-font-size

  • $ui-header-font-weight : string (optional)

    The font-weight of the Header

    \n

    Defaults to: $panel-header-font-weight

  • $ui-header-line-height : number (optional)

    The line-height of the Header

    \n

    Defaults to: $panel-header-line-height

  • $ui-header-border-color : color (optional)

    The border-color of the Header

    \n

    Defaults to: $panel-header-border-color

  • $ui-header-border-width : number (optional)

    The border-width of the Header

    \n

    Defaults to: $panel-header-border-width

  • $ui-header-border-style : string (optional)

    The border-style of the Header

    \n

    Defaults to: $panel-header-border-style

  • $ui-header-background-color : color (optional)

    The background-color of the Header

    \n

    Defaults to: $panel-header-background-color

  • $ui-header-background-gradient : string/list (optional)

    The background-gradient of the Header. Can be either the name of a predefined gradient\nor a list of color stops. Used as the $type parameter for Global_CSS.background-gradient.

    \n

    Defaults to: $panel-header-background-gradient

  • $ui-header-inner-border-color : color (optional)

    The inner border-color of the Header

    \n

    Defaults to: $panel-header-inner-border-color

  • $ui-header-inner-border-width : number (optional)

    The inner border-width of the Header

    \n

    Defaults to: $panel-header-inner-border-width

  • $ui-header-text-padding : number/list (optional)

    The padding of the Header's text element

    \n

    Defaults to: $panel-header-text-padding

  • $ui-header-text-transform : string (optional)

    The text-transform of the Header

    \n

    Defaults to: $panel-header-text-transform

  • $ui-header-padding : number/list (optional)

    The padding of the Header

    \n

    Defaults to: $panel-header-padding

  • $ui-header-icon-width : number (optional)

    The width of the Header icon

    \n

    Defaults to: $panel-header-icon-width

  • $ui-header-icon-height : number (optional)

    The height of the Header icon

    \n

    Defaults to: $panel-header-icon-height

  • $ui-header-icon-spacing : number (optional)

    The space between the Header icon and text

    \n

    Defaults to: $panel-header-icon-spacing

  • $ui-header-icon-background-position : list (optional)

    The background-position of the Header icon

    \n

    Defaults to: $panel-header-icon-background-position

  • $ui-header-glyph-color : color (optional)

    The color of the Header glyph icon

    \n

    Defaults to: $panel-header-glyph-color

  • $ui-header-glyph-opacity : number (optional)

    The opacity of the Header glyph icon

    \n

    Defaults to: $panel-header-glyph-opacity

  • $ui-tool-spacing : number (optional)

    The space between the Panel Tools

    \n

    Defaults to: $panel-tool-spacing

  • $ui-tool-background-image : string (optional)

    The background sprite to use for Panel Tools

    \n

    Defaults to: $panel-tool-background-image

  • $ui-body-color : color (optional)

    The color of text inside the Panel body

    \n

    Defaults to: $panel-body-color

  • $ui-body-border-color : color (optional)

    The border-color of the Panel body

    \n

    Defaults to: $panel-body-border-color

  • $ui-body-border-width : number (optional)

    The border-width of the Panel body

    \n

    Defaults to: $panel-body-border-width

  • $ui-body-border-style : string (optional)

    The border-style of the Panel body

    \n

    Defaults to: $panel-body-border-style

  • $ui-body-background-color : color (optional)

    The background-color of the Panel body

    \n

    Defaults to: $panel-body-background-color

  • $ui-body-font-size : number (optional)

    The font-size of the Panel body

    \n

    Defaults to: $panel-body-font-size

  • $ui-body-font-weight : string (optional)

    The font-weight of the Panel body

    \n

    Defaults to: $panel-body-font-weight

  • $ui-background-stretch-top : string (optional)

    The direction to strech the background-gradient of top docked Headers when slicing images\nfor IE using Sencha Cmd

    \n

    Defaults to: $panel-background-stretch-top

  • $ui-background-stretch-bottom : string (optional)

    The direction to strech the background-gradient of bottom docked Headers when slicing images\nfor IE using Sencha Cmd

    \n

    Defaults to: $panel-background-stretch-bottom

  • $ui-background-stretch-right : string (optional)

    The direction to strech the background-gradient of right docked Headers when slicing images\nfor IE using Sencha Cmd

    \n

    Defaults to: $panel-background-stretch-right

  • $ui-background-stretch-left : string (optional)

    The direction to strech the background-gradient of left docked Headers when slicing images\nfor IE using Sencha Cmd

    \n

    Defaults to: $panel-background-stretch-left

  • $ui-include-border-management-rules : boolean (optional)

    True to include neptune style border management rules.

    \n

    Defaults to: $panel-include-border-management-rules

  • $ui-wrap-border-color : color (optional)

    The color to apply to the border that wraps the body and docked items in a framed\npanel. The presence of the wrap border in a framed panel is controlled by the\nborder config. Only applicable when $ui-include-border-management-rules is\ntrue.

    \n

    Defaults to: $panel-wrap-border-color

  • $ui-wrap-border-width : color (optional)

    The width to apply to the border that wraps the body and docked items in a framed\npanel. The presence of the wrap border in a framed panel is controlled by the\nborder config. Only applicable when $ui-include-border-management-rules is\ntrue.

    \n

    Defaults to: $panel-wrap-border-width

","superclasses":["Ext.Base","Ext.AbstractComponent","Ext.Component","Ext.container.AbstractContainer","Ext.container.Container","Ext.panel.AbstractPanel"],"meta":{},"code_type":"ext_define","requires":["Ext.XTemplate","Ext.fx.Anim","Ext.layout.component.Dock","Ext.panel.DD","Ext.panel.Header","Ext.util.KeyMap","Ext.util.Memento"],"html_meta":{},"statics":{"property":[{"tagname":"property","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"$onExtended","id":"static-property-S-onExtended"}],"cfg":[],"css_var":[],"method":[{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"addConfig","id":"static-method-addConfig"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addInheritableStatics","id":"static-method-addInheritableStatics"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addMember","id":"static-method-addMember"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true},"name":"addMembers","id":"static-method-addMembers"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true},"name":"addStatics","id":"static-method-addStatics"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addXtype","id":"static-method-addXtype"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"borrow","id":"static-method-borrow"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"create","id":"static-method-create"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"createAlias","id":"static-method-createAlias"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"extend","id":"static-method-extend"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"getName","id":"static-method-getName"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"deprecated":{"text":"Use {@link #addMembers} instead.","version":"4.1"}},"name":"implement","id":"static-method-implement"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"mixin","id":"static-method-mixin"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"onExtended","id":"static-method-onExtended"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"markdown":true,"deprecated":{"text":"Use {@link Ext#define Ext.define} instead","version":"4.1.0"}},"name":"override","id":"static-method-override"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"triggerExtended","id":"static-method-triggerExtended"}],"event":[],"css_mixin":[]},"files":[{"href":"Panel3.html#Ext-panel-Panel","filename":"Panel.js"},{"href":"Panel.scss7.html#Ext-panel-Panel","filename":"Panel.scss"}],"linenr":1,"members":{"property":[{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"$className","id":"property-S-className"},{"tagname":"property","owner":"Ext.util.Positionable","meta":{"private":true},"name":"_alignRe","id":"property-_alignRe"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"_isLayoutRoot","id":"property-_isLayoutRoot"},{"tagname":"property","owner":"Ext.util.Positionable","meta":{"private":true},"name":"_positionTopLeft","id":"property-_positionTopLeft"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"allowDomMove","id":"property-allowDomMove"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"autoGenId","id":"property-autoGenId"},{"tagname":"property","owner":"Ext.panel.AbstractPanel","meta":{"readonly":true},"name":"body","id":"property-body"},{"tagname":"property","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"bodyPosProps","id":"property-bodyPosProps"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"borderBoxCls","id":"property-borderBoxCls"},{"tagname":"property","owner":"Ext.Component","meta":{"private":true},"name":"bubbleEvents","id":"property-bubbleEvents"},{"tagname":"property","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"childEls","id":"property-childEls"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"componentLayoutCounter","id":"property-componentLayoutCounter"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"configMap","id":"property-configMap"},{"tagname":"property","owner":"Ext.panel.AbstractPanel","meta":{},"name":"contentPaddingProperty","id":"property-contentPaddingProperty"},{"tagname":"property","owner":"Ext.util.Positionable","meta":{"private":true},"name":"convertPositionSpec","id":"property-convertPositionSpec"},{"tagname":"property","owner":"Ext.panel.Panel","meta":{},"name":"dd","id":"property-dd"},{"tagname":"property","owner":"Ext.Component","meta":{"private":true},"name":"defaultComponentLayoutType","id":"property-defaultComponentLayoutType"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"deferLayouts","id":"property-deferLayouts"},{"tagname":"property","owner":"Ext.container.DockingContainer","meta":{"private":true},"name":"dockOrder","id":"property-dockOrder"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"readonly":true},"name":"draggable","id":"property-draggable"},{"tagname":"property","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"emptyArray","id":"property-emptyArray"},{"tagname":"property","owner":"Ext.util.Observable","meta":{"private":true},"name":"eventsSuspended","id":"property-eventsSuspended"},{"tagname":"property","owner":"Ext.Component","meta":{"readonly":true},"name":"floatParent","id":"property-floatParent"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameCls","id":"property-frameCls"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameElNames","id":"property-frameElNames"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"frameElementsArray","id":"property-frameElementsArray"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameIdRegex","id":"property-frameIdRegex"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameInfoCache","id":"property-frameInfoCache"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"readonly":true},"name":"frameSize","id":"property-frameSize"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameTableTpl","id":"property-frameTableTpl"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameTpl","id":"property-frameTpl"},{"tagname":"property","owner":"Ext.util.Observable","meta":{"readonly":true},"name":"hasListeners","id":"property-hasListeners"},{"tagname":"property","owner":"Ext.container.DockingContainer","meta":{"private":true},"name":"horizontalDocks","id":"property-horizontalDocks"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"horizontalPosProp","id":"property-horizontalPosProp"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"initConfigList","id":"property-initConfigList"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"initConfigMap","id":"property-initConfigMap"},{"tagname":"property","owner":"Ext.util.Animate","meta":{"private":true},"name":"isAnimate","id":"property-isAnimate"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{},"name":"isComponent","id":"property-isComponent"},{"tagname":"property","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"isContainer","id":"property-isContainer"},{"tagname":"property","owner":"Ext.container.DockingContainer","meta":{"private":true},"name":"isDockingContainer","id":"property-isDockingContainer"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"isInstance","id":"property-isInstance"},{"tagname":"property","owner":"Ext.util.Observable","meta":{},"name":"isObservable","id":"property-isObservable"},{"tagname":"property","owner":"Ext.panel.AbstractPanel","meta":{},"name":"isPanel","id":"property-isPanel"},{"tagname":"property","owner":"Ext.Queryable","meta":{"private":true},"name":"isQueryable","id":"property-isQueryable"},{"tagname":"property","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"items","id":"property-items"},{"tagname":"property","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"layoutCounter","id":"property-layoutCounter"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"layoutSuspendCount","id":"property-layoutSuspendCount"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{},"name":"maskOnDisable","id":"property-maskOnDisable"},{"tagname":"property","owner":"Ext.Component","meta":{"private":true},"name":"offsetsCls","id":"property-offsetsCls"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0","readonly":true},"name":"ownerCt","id":"property-ownerCt"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0","readonly":true},"name":"rendered","id":"property-rendered"},{"tagname":"property","owner":"Ext.Component","meta":{"readonly":true},"name":"scrollFlags","id":"property-scrollFlags"},{"tagname":"property","owner":"Ext.Base","meta":{"protected":true},"name":"self","id":"property-self"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"weight","id":"property-weight"},{"tagname":"property","owner":"Ext.Component","meta":{"readonly":true},"name":"zIndexManager","id":"property-zIndexManager"},{"tagname":"property","owner":"Ext.Component","meta":{"readonly":true},"name":"zIndexParent","id":"property-zIndexParent"}],"cfg":[{"tagname":"cfg","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"activeItem","id":"cfg-activeItem"},{"tagname":"cfg","owner":"Ext.container.Container","meta":{},"name":"anchorSize","id":"cfg-anchorSize"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"animCollapse","id":"cfg-animCollapse"},{"tagname":"cfg","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"autoDestroy","id":"cfg-autoDestroy"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"autoEl","id":"cfg-autoEl"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"deprecated":{"text":"Use {@link #loader} config instead.","version":"4.1.1"}},"name":"autoLoad","id":"cfg-autoLoad"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"autoRender","id":"cfg-autoRender"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"autoScroll","id":"cfg-autoScroll"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"autoShow","id":"cfg-autoShow"},{"tagname":"cfg","owner":"Ext.panel.AbstractPanel","meta":{"since":"2.3.0"},"name":"baseCls","id":"cfg-baseCls"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"bbar","id":"cfg-bbar"},{"tagname":"cfg","owner":"Ext.panel.AbstractPanel","meta":{"since":"2.3.0"},"name":"bodyBorder","id":"cfg-bodyBorder"},{"tagname":"cfg","owner":"Ext.panel.AbstractPanel","meta":{},"name":"bodyCls","id":"cfg-bodyCls"},{"tagname":"cfg","owner":"Ext.panel.AbstractPanel","meta":{},"name":"bodyPadding","id":"cfg-bodyPadding"},{"tagname":"cfg","owner":"Ext.panel.AbstractPanel","meta":{"since":"2.3.0"},"name":"bodyStyle","id":"cfg-bodyStyle"},{"tagname":"cfg","owner":"Ext.panel.AbstractPanel","meta":{"since":"2.3.0"},"name":"border","id":"cfg-border"},{"tagname":"cfg","owner":"Ext.container.AbstractContainer","meta":{"since":"3.4.0"},"name":"bubbleEvents","id":"cfg-bubbleEvents"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"buttonAlign","id":"cfg-buttonAlign"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"buttons","id":"cfg-buttons"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"childEls","id":"cfg-childEls"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"closable","id":"cfg-closable"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"closeAction","id":"cfg-closeAction"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"cls","id":"cfg-cls"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"collapseDirection","id":"cfg-collapseDirection"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"collapseFirst","id":"cfg-collapseFirst"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"collapseMode","id":"cfg-collapseMode"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"collapsed","id":"cfg-collapsed"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"collapsedCls","id":"cfg-collapsedCls"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"collapsible","id":"cfg-collapsible"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"columnWidth","id":"cfg-columnWidth"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"componentCls","id":"cfg-componentCls"},{"tagname":"cfg","owner":"Ext.panel.AbstractPanel","meta":{},"name":"componentLayout","id":"cfg-componentLayout"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"constrain","id":"cfg-constrain"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"constrainHeader","id":"cfg-constrainHeader"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"constrainTo","id":"cfg-constrainTo"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"constraintInsets","id":"cfg-constraintInsets"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"contentEl","id":"cfg-contentEl"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"data","id":"cfg-data"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"defaultAlign","id":"cfg-defaultAlign"},{"tagname":"cfg","owner":"Ext.container.DockingContainer","meta":{},"name":"defaultDockWeights","id":"cfg-defaultDockWeights"},{"tagname":"cfg","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"defaultType","id":"cfg-defaultType"},{"tagname":"cfg","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"defaults","id":"cfg-defaults"},{"tagname":"cfg","owner":"Ext.container.AbstractContainer","meta":{},"name":"detachOnRemove","id":"cfg-detachOnRemove"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"disabled","id":"cfg-disabled"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"disabledCls","id":"cfg-disabledCls"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"dockedItems","id":"cfg-dockedItems"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"draggable","id":"cfg-draggable"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"fbar","id":"cfg-fbar"},{"tagname":"cfg","owner":"Ext.util.Floating","meta":{},"name":"fixed","id":"cfg-fixed"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"floatable","id":"cfg-floatable"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"floating","id":"cfg-floating"},{"tagname":"cfg","owner":"Ext.util.Floating","meta":{},"name":"focusOnToFront","id":"cfg-focusOnToFront"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"formBind","id":"cfg-formBind"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"frame","id":"cfg-frame"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"frameHeader","id":"cfg-frameHeader"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"glyph","id":"cfg-glyph"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"header","id":"cfg-header"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"headerOverCls","id":"cfg-headerOverCls"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"headerPosition","id":"cfg-headerPosition"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"height","id":"cfg-height"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"hidden","id":"cfg-hidden"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"hideCollapseTool","id":"cfg-hideCollapseTool"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"hideMode","id":"cfg-hideMode"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"html","id":"cfg-html"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"icon","id":"cfg-icon"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"iconCls","id":"cfg-iconCls"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"id","id":"cfg-id"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"itemId","id":"cfg-itemId"},{"tagname":"cfg","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"items","id":"cfg-items"},{"tagname":"cfg","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"layout","id":"cfg-layout"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"lbar","id":"cfg-lbar"},{"tagname":"cfg","owner":"Ext.util.Observable","meta":{},"name":"listeners","id":"cfg-listeners"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"loader","id":"cfg-loader"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"manageHeight","id":"cfg-manageHeight"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"margin","id":"cfg-margin"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"maxHeight","id":"cfg-maxHeight"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"maxWidth","id":"cfg-maxWidth"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"minButtonWidth","id":"cfg-minButtonWidth"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"minHeight","id":"cfg-minHeight"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"minWidth","id":"cfg-minWidth"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"overCls","id":"cfg-overCls"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"overflowX","id":"cfg-overflowX"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"overflowY","id":"cfg-overflowY"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"overlapHeader","id":"cfg-overlapHeader"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"padding","id":"cfg-padding"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"placeholder","id":"cfg-placeholder"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"placeholderCollapseHideMode","id":"cfg-placeholderCollapseHideMode"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"plugins","id":"cfg-plugins"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{"deprecated":{"text":"4.1.0 Use {@link #header} instead.\nPrevent a Header from being created and shown."}},"name":"preventHeader","id":"cfg-preventHeader"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"rbar","id":"cfg-rbar"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"region","id":"cfg-region"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"renderData","id":"cfg-renderData"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"renderSelectors","id":"cfg-renderSelectors"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"renderTo","id":"cfg-renderTo"},{"tagname":"cfg","owner":"Ext.panel.AbstractPanel","meta":{"protected":true},"name":"renderTpl","id":"cfg-renderTpl"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"resizable","id":"cfg-resizable"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"resizeHandles","id":"cfg-resizeHandles"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"rtl","id":"cfg-rtl"},{"tagname":"cfg","owner":"Ext.state.Stateful","meta":{},"name":"saveDelay","id":"cfg-saveDelay"},{"tagname":"cfg","owner":"Ext.util.Floating","meta":{},"name":"shadow","id":"cfg-shadow"},{"tagname":"cfg","owner":"Ext.util.Floating","meta":{},"name":"shadowOffset","id":"cfg-shadowOffset"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"shrinkWrap","id":"cfg-shrinkWrap"},{"tagname":"cfg","owner":"Ext.panel.AbstractPanel","meta":{},"name":"shrinkWrapDock","id":"cfg-shrinkWrapDock"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"simpleDrag","id":"cfg-simpleDrag"},{"tagname":"cfg","owner":"Ext.state.Stateful","meta":{},"name":"stateEvents","id":"cfg-stateEvents"},{"tagname":"cfg","owner":"Ext.state.Stateful","meta":{},"name":"stateId","id":"cfg-stateId"},{"tagname":"cfg","owner":"Ext.state.Stateful","meta":{},"name":"stateful","id":"cfg-stateful"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"style","id":"cfg-style"},{"tagname":"cfg","owner":"Ext.container.AbstractContainer","meta":{},"name":"suspendLayout","id":"cfg-suspendLayout"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"tbar","id":"cfg-tbar"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"title","id":"cfg-title"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"titleAlign","id":"cfg-titleAlign"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"titleCollapse","id":"cfg-titleCollapse"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"toFrontOnShow","id":"cfg-toFrontOnShow"},{"tagname":"cfg","owner":"Ext.panel.Panel","meta":{},"name":"tools","id":"cfg-tools"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"tpl","id":"cfg-tpl"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"tplWriteMode","id":"cfg-tplWriteMode"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"ui","id":"cfg-ui"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"uiCls","id":"cfg-uiCls"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"width","id":"cfg-width"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"xtype","id":"cfg-xtype"}],"css_var":[{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$border-width-threshold","id":"css_var-S-border-width-threshold"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$include-panel-default-framed-ui","id":"css_var-S-include-panel-default-framed-ui"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$include-panel-default-ui","id":"css_var-S-include-panel-default-ui"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-background-stretch-bottom","id":"css_var-S-panel-background-stretch-bottom"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-background-stretch-left","id":"css_var-S-panel-background-stretch-left"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-background-stretch-right","id":"css_var-S-panel-background-stretch-right"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-background-stretch-top","id":"css_var-S-panel-background-stretch-top"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-base-color","id":"css_var-S-panel-base-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-body-background-color","id":"css_var-S-panel-body-background-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-body-border-color","id":"css_var-S-panel-body-border-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-body-border-style","id":"css_var-S-panel-body-border-style"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-body-border-width","id":"css_var-S-panel-body-border-width"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-body-color","id":"css_var-S-panel-body-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-body-font-size","id":"css_var-S-panel-body-font-size"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-body-font-weight","id":"css_var-S-panel-body-font-weight"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-border-color","id":"css_var-S-panel-border-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-border-width","id":"css_var-S-panel-border-width"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-background-color","id":"css_var-S-panel-frame-background-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-base-color","id":"css_var-S-panel-frame-base-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-body-border-width","id":"css_var-S-panel-frame-body-border-width"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-border-color","id":"css_var-S-panel-frame-border-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-border-radius","id":"css_var-S-panel-frame-border-radius"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-border-style","id":"css_var-S-panel-frame-border-style"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-border-width","id":"css_var-S-panel-frame-border-width"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-header-border-width","id":"css_var-S-panel-frame-header-border-width"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-header-inner-border-color","id":"css_var-S-panel-frame-header-inner-border-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-header-inner-border-width","id":"css_var-S-panel-frame-header-inner-border-width"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-header-padding","id":"css_var-S-panel-frame-header-padding"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-frame-padding","id":"css_var-S-panel-frame-padding"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-ghost-opacity","id":"css_var-S-panel-ghost-opacity"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-background-color","id":"css_var-S-panel-header-background-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-background-gradient","id":"css_var-S-panel-header-background-gradient"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-border-color","id":"css_var-S-panel-header-border-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-border-style","id":"css_var-S-panel-header-border-style"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-border-width","id":"css_var-S-panel-header-border-width"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-color","id":"css_var-S-panel-header-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-font-family","id":"css_var-S-panel-header-font-family"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-font-size","id":"css_var-S-panel-header-font-size"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-font-weight","id":"css_var-S-panel-header-font-weight"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-glyph-color","id":"css_var-S-panel-header-glyph-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-glyph-opacity","id":"css_var-S-panel-header-glyph-opacity"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-icon-background-position","id":"css_var-S-panel-header-icon-background-position"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-icon-height","id":"css_var-S-panel-header-icon-height"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-icon-spacing","id":"css_var-S-panel-header-icon-spacing"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-icon-width","id":"css_var-S-panel-header-icon-width"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-inner-border-color","id":"css_var-S-panel-header-inner-border-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-inner-border-width","id":"css_var-S-panel-header-inner-border-width"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-line-height","id":"css_var-S-panel-header-line-height"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-padding","id":"css_var-S-panel-header-padding"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-text-padding","id":"css_var-S-panel-header-text-padding"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-header-text-transform","id":"css_var-S-panel-header-text-transform"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-include-border-management-rules","id":"css_var-S-panel-include-border-management-rules"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-tool-background-image","id":"css_var-S-panel-tool-background-image"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-tool-spacing","id":"css_var-S-panel-tool-spacing"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-wrap-border-color","id":"css_var-S-panel-wrap-border-color"},{"tagname":"css_var","owner":"Ext.panel.Panel","meta":{},"name":"$panel-wrap-border-width","id":"css_var-S-panel-wrap-border-width"}],"method":[{"tagname":"method","owner":"Ext.Component","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"add","id":"method-add"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{},"name":"addBodyCls","id":"method-addBodyCls"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{},"name":"addChildEls","id":"method-addChildEls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0","deprecated":{"text":"Use {@link #addCls} instead.","version":"4.1"}},"name":"addClass","id":"method-addClass"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"addCls","id":"method-addCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"addClsWithUI","id":"method-addClsWithUI"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{},"name":"addDocked","id":"method-addDocked"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"addEvents","id":"method-addEvents"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"addFocusListener","id":"method-addFocusListener"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"addListener","id":"method-addListener"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"addManagedListener","id":"method-addManagedListener"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"addOverCls","id":"method-addOverCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"addPlugin","id":"method-addPlugin"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"addPropertyToState","id":"method-addPropertyToState"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{},"name":"addStateEvents","id":"method-addStateEvents"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"addTool","id":"method-addTool"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"template":true,"private":true},"name":"addTools","id":"method-addTools"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{},"name":"addUIClsToElement","id":"method-addUIClsToElement"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"addUIToElement","id":"method-addUIToElement"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"private":true},"name":"adjustForConstraints","id":"method-adjustForConstraints"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"adjustPosition","id":"method-adjustPosition"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"protected":true,"template":true},"name":"afterCollapse","id":"method-afterCollapse"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"template":true,"protected":true},"name":"afterComponentLayout","id":"method-afterComponentLayout"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"protected":true,"template":true},"name":"afterExpand","id":"method-afterExpand"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"afterFirstLayout","id":"method-afterFirstLayout"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"afterHide","id":"method-afterHide"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"protected":true,"template":true},"name":"afterLayout","id":"method-afterLayout"},{"tagname":"method","owner":"Ext.Component","meta":{"template":true,"protected":true},"name":"afterRender","id":"method-afterRender"},{"tagname":"method","owner":"Ext.Component","meta":{"template":true,"protected":true},"name":"afterSetPosition","id":"method-afterSetPosition"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"afterShow","id":"method-afterShow"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"chainable":true},"name":"alignTo","id":"method-alignTo"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"chainable":true},"name":"anchorTo","id":"method-anchorTo"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"private":true},"name":"anim","id":"method-anim"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"animate","id":"method-animate"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{"private":true},"name":"applyChildEls","id":"method-applyChildEls"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"applyDefaults","id":"method-applyDefaults"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"applyRenderSelectors","id":"method-applyRenderSelectors"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{},"name":"applyState","id":"method-applyState"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"applyTargetCls","id":"method-applyTargetCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"beforeBlur","id":"method-beforeBlur"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true,"template":true},"name":"beforeComponentLayout","id":"method-beforeComponentLayout"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"template":true,"protected":true},"name":"beforeDestroy","id":"method-beforeDestroy"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"beforeFocus","id":"method-beforeFocus"},{"tagname":"method","owner":"Ext.Component","meta":{"template":true,"protected":true},"name":"beforeLayout","id":"method-beforeLayout"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"beforeRender","id":"method-beforeRender"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"beforeSetPosition","id":"method-beforeSetPosition"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"beforeShow","id":"method-beforeShow"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"beginCollapse","id":"method-beginCollapse"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"beginDrag","id":"method-beginDrag"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"beginExpand","id":"method-beginExpand"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true,"private":true},"name":"blur","id":"method-blur"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"bridgeToolbars","id":"method-bridgeToolbars"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"bubble","id":"method-bubble"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"private":true},"name":"calculateAnchorXY","id":"method-calculateAnchorXY"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"calculateConstrainedPosition","id":"method-calculateConstrainedPosition"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true,"deprecated":{"text":"as of 4.1. Use {@link #callParent} instead."}},"name":"callOverridden","id":"method-callOverridden"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"callParent","id":"method-callParent"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"callSuper","id":"method-callSuper"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true},"name":"cancelFocus","id":"method-cancelFocus"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"captureArgs","id":"method-captureArgs"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"chainable":true,"since":"2.3.0"},"name":"cascade","id":"method-cascade"},{"tagname":"method","owner":"Ext.util.Floating","meta":{},"name":"center","id":"method-center"},{"tagname":"method","owner":"Ext.Queryable","meta":{},"name":"child","id":"method-child"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"clearListeners","id":"method-clearListeners"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"clearManagedListeners","id":"method-clearManagedListeners"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"cloneConfig","id":"method-cloneConfig"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"close","id":"method-close"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"chainable":true},"name":"collapse","id":"method-collapse"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"collapsedHorizontal","id":"method-collapsedHorizontal"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"collapsedVertical","id":"method-collapsedVertical"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"configClass","id":"method-configClass"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"constructPlugin","id":"method-constructPlugin"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"constructPlugins","id":"method-constructPlugins"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{},"name":"contains","id":"method-contains"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"continueFireEvent","id":"method-continueFireEvent"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"convertCollapseDir","id":"method-convertCollapseDir"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"convertPositionSpec","id":"method-convertPositionSpec"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"createReExpander","id":"method-createReExpander"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"createRelayer","id":"method-createRelayer"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"deleteMembers","id":"method-deleteMembers"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"destroy","id":"method-destroy"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{"private":true},"name":"destroyDockedItems","id":"method-destroyDockedItems"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"detachComponent","id":"method-detachComponent"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"chainable":true,"since":"1.1.0"},"name":"disable","id":"method-disable"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"doApplyRenderTpl","id":"method-doApplyRenderTpl"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{},"name":"doAutoRender","id":"method-doAutoRender"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"doClose","id":"method-doClose"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"doCollapseExpand","id":"method-doCollapseExpand"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"chainable":true},"name":"doComponentLayout","id":"method-doComponentLayout"},{"tagname":"method","owner":"Ext.util.Floating","meta":{},"name":"doConstrain","id":"method-doConstrain"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"chainable":true,"since":"2.3.0"},"name":"doLayout","id":"method-doLayout"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"doRemove","id":"method-doRemove"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"doRenderContent","id":"method-doRenderContent"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{"private":true},"name":"doRenderDockedItems","id":"method-doRenderDockedItems"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"doRenderFramingDockedItems","id":"method-doRenderFramingDockedItems"},{"tagname":"method","owner":"Ext.Queryable","meta":{},"name":"down","id":"method-down"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"chainable":true,"since":"1.1.0","private":true},"name":"enable","id":"method-enable"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"enableBubble","id":"method-enableBubble"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"endDrag","id":"method-endDrag"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{},"name":"ensureAttachedToBody","id":"method-ensureAttachedToBody"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"chainable":true},"name":"expand","id":"method-expand"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"findParentBy","id":"method-findParentBy"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"findParentByType","id":"method-findParentByType"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"findPlugin","id":"method-findPlugin"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"findReExpander","id":"method-findReExpander"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"finishRender","id":"method-finishRender"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"finishRenderChildren","id":"method-finishRenderChildren"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"fireEvent","id":"method-fireEvent"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"fireEventArgs","id":"method-fireEventArgs"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"fireHierarchyEvent","id":"method-fireHierarchyEvent"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"fitContainer","id":"method-fitContainer"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"floatCollapsedPanel","id":"method-floatCollapsedPanel"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"focus","id":"method-focus"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"deprecated":{"text":"Use {@link #updateLayout} instead.","version":"4.1.0"}},"name":"forceComponentLayout","id":"method-forceComponentLayout"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getActionEl","id":"method-getActionEl"},{"tagname":"method","owner":"Ext.util.Animate","meta":{},"name":"getActiveAnimation","id":"method-getActiveAnimation"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getAlignToXY","id":"method-getAlignToXY"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"private":true},"name":"getAnchor","id":"method-getAnchor"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getAnchorToXY","id":"method-getAnchorToXY"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getAnchorXY","id":"method-getAnchorXY"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getAnimateTarget","id":"method-getAnimateTarget"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getAutoId","id":"method-getAutoId"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getBorderPadding","id":"method-getBorderPadding"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getBox","id":"method-getBox"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"getBubbleParent","id":"method-getBubbleParent"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true},"name":"getBubbleTarget","id":"method-getBubbleTarget"},{"tagname":"method","owner":"Ext.container.Container","meta":{},"name":"getChildByElement","id":"method-getChildByElement"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{"private":true},"name":"getChildEls","id":"method-getChildEls"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"getChildItemsToDisable","id":"method-getChildItemsToDisable"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{"private":true},"name":"getClassChildEls","id":"method-getClassChildEls"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"getCollapsed","id":"method-getCollapsed"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"getCollapsedDockedItems","id":"method-getCollapsedDockedItems"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"since":"2.3.0"},"name":"getComponent","id":"method-getComponent"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"getComponentId","id":"method-getComponentId"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getComponentLayout","id":"method-getComponentLayout"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"getConfig","id":"method-getConfig"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getConstrainVector","id":"method-getConstrainVector"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"getContentTarget","id":"method-getContentTarget"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"getDefaultContentTarget","id":"method-getDefaultContentTarget"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{},"name":"getDockedComponent","id":"method-getDockedComponent"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{},"name":"getDockedItems","id":"method-getDockedItems"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{"private":true},"name":"getDockingRefItems","id":"method-getDockingRefItems"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getDragEl","id":"method-getDragEl"},{"tagname":"method","owner":"Ext.Component","meta":{"since":"1.1.0"},"name":"getEl","id":"method-getEl"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getElConfig","id":"method-getElConfig"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"getFocusEl","id":"method-getFocusEl"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getFrameInfo","id":"method-getFrameInfo"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getFrameRenderData","id":"method-getFrameRenderData"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getFrameTpl","id":"method-getFrameTpl"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getFramingInfoCls","id":"method-getFramingInfoCls"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"getHeader","id":"method-getHeader"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"getHeaderCollapsedClasses","id":"method-getHeaderCollapsedClasses"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getHeight","id":"method-getHeight"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"getHeightAuthority","id":"method-getHeightAuthority"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getHierarchyState","id":"method-getHierarchyState"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"getId","id":"method-getId"},{"tagname":"method","owner":"Ext.Base","meta":{},"name":"getInitialConfig","id":"method-getInitialConfig"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{},"name":"getInsertPosition","id":"method-getInsertPosition"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getItemId","id":"method-getItemId"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"getKeyMap","id":"method-getKeyMap"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{},"name":"getLayout","id":"method-getLayout"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getLoader","id":"method-getLoader"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getLocalX","id":"method-getLocalX"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getLocalXY","id":"method-getLocalXY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getLocalY","id":"method-getLocalY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getMaskTarget","id":"method-getMaskTarget"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getOffsetsTo","id":"method-getOffsetsTo"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"getOppositeDirection","id":"method-getOppositeDirection"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getOuterSize","id":"method-getOuterSize"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getOverflowEl","id":"method-getOverflowEl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getOverflowStyle","id":"method-getOverflowStyle"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getOwningBorderContainer","id":"method-getOwningBorderContainer"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getOwningBorderLayout","id":"method-getOwningBorderLayout"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"getPlaceholder","id":"method-getPlaceholder"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getPlugin","id":"method-getPlugin"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"getPosition","id":"method-getPosition"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getPositionEl","id":"method-getPositionEl"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"getProtoBody","id":"method-getProtoBody"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getProxy","id":"method-getProxy"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"getReExpander","id":"method-getReExpander"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"protected":true},"name":"getRefItems","id":"method-getRefItems"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"private":true},"name":"getRefOwner","id":"method-getRefOwner"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getRegion","id":"method-getRegion"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getRenderTree","id":"method-getRenderTree"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getResizeEl","id":"method-getResizeEl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getSize","id":"method-getSize"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getSizeModel","id":"method-getSizeModel"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"getState","id":"method-getState"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{"private":true},"name":"getStateId","id":"method-getStateId"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getStyleProxy","id":"method-getStyleProxy"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"getTargetEl","id":"method-getTargetEl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getTpl","id":"method-getTpl"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getViewRegion","id":"method-getViewRegion"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getVisibilityEl","id":"method-getVisibilityEl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getWidth","id":"method-getWidth"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"getWidthAuthority","id":"method-getWidthAuthority"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getX","id":"method-getX"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"getXType","id":"method-getXType"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"getXTypes","id":"method-getXTypes"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getXY","id":"method-getXY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getY","id":"method-getY"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"ghost","id":"method-ghost"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"ghostTools","id":"method-ghostTools"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"deprecated":{"text":"Replaced by {@link #getActiveAnimation}","version":"4.0"}},"name":"hasActiveFx","id":"method-hasActiveFx"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"hasCls","id":"method-hasCls"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"hasConfig","id":"method-hasConfig"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"hasListener","id":"method-hasListener"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"hasUICls","id":"method-hasUICls"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"hide","id":"method-hide"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"initAria","id":"method-initAria"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"initBodyBorder","id":"method-initBodyBorder"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"initBodyStyles","id":"method-initBodyStyles"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"initBorderProps","id":"method-initBorderProps"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"initBorderRegion","id":"method-initBorderRegion"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"initCls","id":"method-initCls"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"since":"1.1.0","template":true,"protected":true},"name":"initComponent","id":"method-initComponent"},{"tagname":"method","owner":"Ext.Base","meta":{"chainable":true,"protected":true},"name":"initConfig","id":"method-initConfig"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"initContainer","id":"method-initContainer"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{"private":true},"name":"initDockingItems","id":"method-initDockingItems"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"initDraggable","id":"method-initDraggable"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"initEvents","id":"method-initEvents"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"initFrame","id":"method-initFrame"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"initFramingTpl","id":"method-initFramingTpl"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"initHeaderAria","id":"method-initHeaderAria"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"initHierarchyEvents","id":"method-initHierarchyEvents"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"initHierarchyState","id":"method-initHierarchyState"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"initItems","id":"method-initItems"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"initPadding","id":"method-initPadding"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"initPlugin","id":"method-initPlugin"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"initRenderData","id":"method-initRenderData"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"initRenderTpl","id":"method-initRenderTpl"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"initResizable","id":"method-initResizable"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"initSimpleDraggable","id":"method-initSimpleDraggable"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{"private":true},"name":"initState","id":"method-initState"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"initStyles","id":"method-initStyles"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"initTools","id":"method-initTools"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"insert","id":"method-insert"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{},"name":"insertDocked","id":"method-insertDocked"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"is","id":"method-is"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{},"name":"isAncestor","id":"method-isAncestor"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"isContainedFloater","id":"method-isContainedFloater"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isDescendant","id":"method-isDescendant"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isDescendantOf","id":"method-isDescendantOf"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isDisabled","id":"method-isDisabled"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isDraggable","id":"method-isDraggable"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isDroppable","id":"method-isDroppable"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isFloating","id":"method-isFloating"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isFocusable","id":"method-isFocusable"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isHidden","id":"method-isHidden"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isHierarchicallyHidden","id":"method-isHierarchicallyHidden"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"protected":true},"name":"isLayoutRoot","id":"method-isLayoutRoot"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isLayoutSuspended","id":"method-isLayoutSuspended"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isLocalRtl","id":"method-isLocalRtl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isOppositeRootDirection","id":"method-isOppositeRootDirection"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isParentRtl","id":"method-isParentRtl"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"isPlaceHolderCollapse","id":"method-isPlaceHolderCollapse"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"since":"1.1.0"},"name":"isVisible","id":"method-isVisible"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"isXType","id":"method-isXType"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"lookupComponent","id":"method-lookupComponent"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"makeFloating","id":"method-makeFloating"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"mask","id":"method-mask"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"mon","id":"method-mon"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{},"name":"move","id":"method-move"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"mun","id":"method-mun"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"nextChild","id":"method-nextChild"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"nextNode","id":"method-nextNode"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"nextSibling","id":"method-nextSibling"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"on","id":"method-on"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"protected":true,"template":true},"name":"onAdd","id":"method-onAdd"},{"tagname":"method","owner":"Ext.Component","meta":{"since":"3.4.0","template":true,"protected":true},"name":"onAdded","id":"method-onAdded"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"onAfterFloatLayout","id":"method-onAfterFloatLayout"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"protected":true,"template":true},"name":"onBeforeAdd","id":"method-onBeforeAdd"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"onBeforeFloatLayout","id":"method-onBeforeFloatLayout"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"onBlur","id":"method-onBlur"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"onBoxReady","id":"method-onBoxReady"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"onConfigUpdate","id":"method-onConfigUpdate"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"onDestroy","id":"method-onDestroy"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true,"template":true},"name":"onDisable","id":"method-onDisable"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{"protected":true,"template":true},"name":"onDockedAdd","id":"method-onDockedAdd"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{"protected":true,"template":true},"name":"onDockedRemove","id":"method-onDockedRemove"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true,"template":true},"name":"onEnable","id":"method-onEnable"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"onFloatShow","id":"method-onFloatShow"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"onFocus","id":"method-onFocus"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"template":true,"protected":true},"name":"onHide","id":"method-onHide"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"onKeyDown","id":"method-onKeyDown"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"onMouseDown","id":"method-onMouseDown"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"onMouseEnterFloated","id":"method-onMouseEnterFloated"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"onMouseLeaveFloated","id":"method-onMouseLeaveFloated"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"onMove","id":"method-onMove"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"template":true,"protected":true},"name":"onPosition","id":"method-onPosition"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"protected":true,"template":true},"name":"onRemove","id":"method-onRemove"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"since":"3.4.0","template":true,"protected":true},"name":"onRemoved","id":"method-onRemoved"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"protected":true,"template":true},"name":"onRender","id":"method-onRender"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"template":true,"protected":true},"name":"onResize","id":"method-onResize"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"template":true,"protected":true},"name":"onShow","id":"method-onShow"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"onShowComplete","id":"method-onShowComplete"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"onShowVeto","id":"method-onShowVeto"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{"private":true},"name":"onStateChange","id":"method-onStateChange"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"parseBox","id":"method-parseBox"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"placeholderCollapse","id":"method-placeholderCollapse"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"placeholderExpand","id":"method-placeholderExpand"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"postBlur","id":"method-postBlur"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"prepareClass","id":"method-prepareClass"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"prepareItems","id":"method-prepareItems"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"prevChild","id":"method-prevChild"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"previousNode","id":"method-previousNode"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"previousSibling","id":"method-previousSibling"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{"private":true},"name":"prune","id":"method-prune"},{"tagname":"method","owner":"Ext.Queryable","meta":{},"name":"query","id":"method-query"},{"tagname":"method","owner":"Ext.Queryable","meta":{},"name":"queryBy","id":"method-queryBy"},{"tagname":"method","owner":"Ext.Queryable","meta":{},"name":"queryById","id":"method-queryById"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"registerFloatingItem","id":"method-registerFloatingItem"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"registerWithOwnerCt","id":"method-registerWithOwnerCt"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"relayEvents","id":"method-relayEvents"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"remove","id":"method-remove"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"removeAll","id":"method-removeAll"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"chainable":true},"name":"removeAnchor","id":"method-removeAnchor"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{},"name":"removeBodyCls","id":"method-removeBodyCls"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{},"name":"removeChildEls","id":"method-removeChildEls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0","private":true},"name":"removeClass","id":"method-removeClass"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"removeCls","id":"method-removeCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"removeClsWithUI","id":"method-removeClsWithUI"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{},"name":"removeDocked","id":"method-removeDocked"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"removeListener","id":"method-removeListener"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"removeManagedListener","id":"method-removeManagedListener"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"removeManagedListenerItem","id":"method-removeManagedListenerItem"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"removeOverCls","id":"method-removeOverCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"removePlugin","id":"method-removePlugin"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{},"name":"removeUIClsFromElement","id":"method-removeUIClsFromElement"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"removeUIFromElement","id":"method-removeUIFromElement"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{},"name":"render","id":"method-render"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"repositionFloatingItems","id":"method-repositionFloatingItems"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"restoreDimension","id":"method-restoreDimension"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"restoreHiddenDocked","id":"method-restoreHiddenDocked"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"resumeEvent","id":"method-resumeEvent"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"resumeEvents","id":"method-resumeEvents"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"resumeLayouts","id":"method-resumeLayouts"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{},"name":"savePropToState","id":"method-savePropToState"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{},"name":"savePropsToState","id":"method-savePropsToState"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{},"name":"saveState","id":"method-saveState"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"scrollBy","id":"method-scrollBy"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"chainable":true},"name":"sequenceFx","id":"method-sequenceFx"},{"tagname":"method","owner":"Ext.util.Floating","meta":{},"name":"setActive","id":"method-setActive"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"setAutoScroll","id":"method-setAutoScroll"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{},"name":"setBodyStyle","id":"method-setBodyStyle"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"setBorder","id":"method-setBorder"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"setBorderRegion","id":"method-setBorderRegion"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"chainable":true},"name":"setBox","id":"method-setBox"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"setComponentLayout","id":"method-setComponentLayout"},{"tagname":"method","owner":"Ext.Base","meta":{"chainable":true,"private":true},"name":"setConfig","id":"method-setConfig"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setDisabled","id":"method-setDisabled"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setDocked","id":"method-setDocked"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"setFloatParent","id":"method-setFloatParent"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"setGlyph","id":"method-setGlyph"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setHeight","id":"method-setHeight"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"setHiddenDocked","id":"method-setHiddenDocked"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"setHiddenState","id":"method-setHiddenState"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"setIcon","id":"method-setIcon"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"setIconCls","id":"method-setIconCls"},{"tagname":"method","owner":"Ext.container.AbstractContainer","meta":{"private":true},"name":"setLayout","id":"method-setLayout"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"setLoading","id":"method-setLoading"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setLocalX","id":"method-setLocalX"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setLocalXY","id":"method-setLocalXY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setLocalY","id":"method-setLocalY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setMargin","id":"method-setMargin"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"setOverflowXY","id":"method-setOverflowXY"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"setPagePosition","id":"method-setPagePosition"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"setPosition","id":"method-setPosition"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"chainable":true},"name":"setRegion","id":"method-setRegion"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"setRegionWeight","id":"method-setRegionWeight"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setSize","id":"method-setSize"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"setTitle","id":"method-setTitle"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{},"name":"setUI","id":"method-setUI"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"setVisible","id":"method-setVisible"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setWidth","id":"method-setWidth"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setX","id":"method-setX"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setXY","id":"method-setXY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setY","id":"method-setY"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"setZIndex","id":"method-setZIndex"},{"tagname":"method","owner":"Ext.container.DockingContainer","meta":{"private":true},"name":"setupDockingRenderTpl","id":"method-setupDockingRenderTpl"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"setupFramingTpl","id":"method-setupFramingTpl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"setupProtoEl","id":"method-setupProtoEl"},{"tagname":"method","owner":"Ext.panel.AbstractPanel","meta":{"private":true},"name":"setupRenderTpl","id":"method-setupRenderTpl"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"show","id":"method-show"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"showAt","id":"method-showAt"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"showBy","id":"method-showBy"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"slideOutFloatedPanel","id":"method-slideOutFloatedPanel"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"slideOutFloatedPanelBegin","id":"method-slideOutFloatedPanelBegin"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"slideOutFloatedPanelEnd","id":"method-slideOutFloatedPanelEnd"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"statics","id":"method-statics"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"chainable":true},"name":"stopAnimation","id":"method-stopAnimation"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"deprecated":{"text":"Replaced by {@link #stopAnimation}","version":"4.0"}},"name":"stopFx","id":"method-stopFx"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"suspendEvent","id":"method-suspendEvent"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"suspendEvents","id":"method-suspendEvents"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"suspendLayouts","id":"method-suspendLayouts"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"chainable":true},"name":"syncFx","id":"method-syncFx"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"syncHidden","id":"method-syncHidden"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"syncShadow","id":"method-syncShadow"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"chainable":true},"name":"toBack","id":"method-toBack"},{"tagname":"method","owner":"Ext.util.Floating","meta":{},"name":"toFront","id":"method-toFront"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"chainable":true},"name":"toggleCollapse","id":"method-toggleCollapse"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"translatePoints","id":"method-translatePoints"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"private":true},"name":"translateXY","id":"method-translateXY"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"un","id":"method-un"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"unghost","id":"method-unghost"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"unitizeBox","id":"method-unitizeBox"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"unmask","id":"method-unmask"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"unregisterFloatingItem","id":"method-unregisterFloatingItem"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"up","id":"method-up"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"update","id":"method-update"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"updateAria","id":"method-updateAria"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"updateBox","id":"method-updateBox"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"updateCollapseTool","id":"method-updateCollapseTool"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"updateFrame","id":"method-updateFrame"},{"tagname":"method","owner":"Ext.panel.Panel","meta":{"private":true},"name":"updateHeader","id":"method-updateHeader"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"updateLayout","id":"method-updateLayout"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"wrapPrimaryEl","id":"method-wrapPrimaryEl"}],"event":[{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"activate","id":"event-activate"},{"tagname":"event","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"add","id":"event-add"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"added","id":"event-added"},{"tagname":"event","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"afterlayout","id":"event-afterlayout"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"afterrender","id":"event-afterrender"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"beforeactivate","id":"event-beforeactivate"},{"tagname":"event","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"beforeadd","id":"event-beforeadd"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"beforeclose","id":"event-beforeclose"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"beforecollapse","id":"event-beforecollapse"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"beforedeactivate","id":"event-beforedeactivate"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"beforedestroy","id":"event-beforedestroy"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"beforeexpand","id":"event-beforeexpand"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"beforehide","id":"event-beforehide"},{"tagname":"event","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"beforeremove","id":"event-beforeremove"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"beforerender","id":"event-beforerender"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"beforeshow","id":"event-beforeshow"},{"tagname":"event","owner":"Ext.state.Stateful","meta":{},"name":"beforestaterestore","id":"event-beforestaterestore"},{"tagname":"event","owner":"Ext.state.Stateful","meta":{},"name":"beforestatesave","id":"event-beforestatesave"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"blur","id":"event-blur"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"boxready","id":"event-boxready"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"close","id":"event-close"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"collapse","id":"event-collapse"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"deactivate","id":"event-deactivate"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"destroy","id":"event-destroy"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"disable","id":"event-disable"},{"tagname":"event","owner":"Ext.container.DockingContainer","meta":{},"name":"dockedadd","id":"event-dockedadd"},{"tagname":"event","owner":"Ext.container.DockingContainer","meta":{},"name":"dockedremove","id":"event-dockedremove"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"enable","id":"event-enable"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"expand","id":"event-expand"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"float","id":"event-float"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"focus","id":"event-focus"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"glyphchange","id":"event-glyphchange"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"hide","id":"event-hide"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"iconchange","id":"event-iconchange"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"iconclschange","id":"event-iconclschange"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"move","id":"event-move"},{"tagname":"event","owner":"Ext.container.AbstractContainer","meta":{"since":"2.3.0"},"name":"remove","id":"event-remove"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"removed","id":"event-removed"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"render","id":"event-render"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"resize","id":"event-resize"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"show","id":"event-show"},{"tagname":"event","owner":"Ext.state.Stateful","meta":{},"name":"staterestore","id":"event-staterestore"},{"tagname":"event","owner":"Ext.state.Stateful","meta":{},"name":"statesave","id":"event-statesave"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"titlechange","id":"event-titlechange"},{"tagname":"event","owner":"Ext.panel.Panel","meta":{},"name":"unfloat","id":"event-unfloat"}],"css_mixin":[{"tagname":"css_mixin","owner":"Ext.panel.Panel","meta":{},"name":"extjs-panel-ui","id":"css_mixin-extjs-panel-ui"}]},"inheritable":null,"private":null,"component":true,"name":"Ext.panel.Panel","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.panel.Panel","mixins":[],"mixedInto":[]});