X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/docs/output/Ext.grid.RowEditor.js diff --git a/docs/output/Ext.grid.RowEditor.js b/docs/output/Ext.grid.RowEditor.js new file mode 100644 index 00000000..dfe41de1 --- /dev/null +++ b/docs/output/Ext.grid.RowEditor.js @@ -0,0 +1 @@ +Ext.data.JsonP.Ext_grid_RowEditor({"tagname":"class","html":"

Hierarchy

Mixins

Requires

Files

NOTE This is a private utility class for internal use by the framework. Don't rely on its existence.

Internal utility class used to provide row editing functionality. For developers, they should use\nthe RowEditing plugin to use this functionality with a grid.

\n
Defined By

Config options

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

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

\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 from it, else\ndestruction mu...

If true the container will automatically destroy any contained component that is removed from it, else\ndestruction must be handled manually.\nDefaults to true.

\n

Defaults to: true

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
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 omited 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\n

This defaults to true for the Window class.

\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.

\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. Defaults to false.

\n

Defaults to: false

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"

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. This only applies to a panel\nwhich has the frame configuration set to true.

\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.

\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
Specifies the border for this component. ...

Specifies the border 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'.

\n
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.\nDefaults to ['add', 'remove'].\n\n

Defaults to: ["add", "remove"]

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
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
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: ""

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 two options:

\n\n
    \n
  • undefined/omitted

    \n\n

    When collapsed, a placeholder Header is injected into the layout to represent the Panel\nand to provide a UI with a Tool to allow the user to re-expand the Panel.

  • \n
  • header :

    \n\n

    The Panel collapses to leave its header visible as when not inside a border\nlayout.

  • \n
\n\n
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.

\n\n

See collapseMode and collapseDirection

\n

Defaults to: false

 

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
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
 

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
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: 1, left: 3, right: 5, bottom: 7}

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\n\n

Defaults to 'panel'.

\n\n

Defaults to: "panel"

This option is a means of applying default settings to all added items whether added through the items\nconfig or via ...

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

\n\n

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

\n\n

If the defaults option is specified as a function, then the function will be called using this Container as the\nscope (this reference) and passing the added item as the first parameter. Any resulting object\nfrom that call is then applied to the item as 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: defaults: {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
True to disable the component. ...

True to disable the component.

\n

Defaults to: false

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

CSS class to add when the Component is disabled. Defaults to 'x-item-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
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

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
If specified, the properties in this object are used as default config values for each\nExt.form.Labelable instance (e.g. ...

If specified, the properties in this object are used as default config values for each\nExt.form.Labelable instance (e.g. Ext.form.field.Base or Ext.form.FieldContainer)\nthat is added as a descendant of this container. Corresponding values specified in an individual field's\nown configuration, or from the defaults config of its parent container,\nwill take precedence. See the documentation for Ext.form.Labelable to see what config\noptions may be specified in the fieldDefaults.

\n\n\n

Example:

\n\n\n
new Ext.form.Panel({\n    fieldDefaults: {\n        labelAlign: 'left',\n        labelWidth: 100\n    },\n    items: [{\n        xtype: 'fieldset',\n        defaults: {\n            labelAlign: 'top'\n        },\n        items: [{\n            name: 'field1'\n        }, {\n            name: 'field2'\n        }]\n    }, {\n        xtype: 'fieldset',\n        items: [{\n            name: 'field3',\n            labelWidth: 150\n        }, {\n            name: 'field4'\n        }]\n    }]\n});
\n\n\n

In this example, field1 and field2 will get labelAlign:'top' (from the fieldset's defaults)\nand labelWidth:100 (from fieldDefaults), field3 and field4 will both get labelAlign:'left' (from\nfieldDefaults and field3 will use the labelWidth:150 from its own config.

\n\n
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 themselves with\nthe 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

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

True to apply a frame to the panel. ...

True to apply a frame to the panel.

\n

Defaults to: false

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

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

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"

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: ""

CSS class for icon in header. ...

CSS class for icon in 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
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
A single item, or an array of child Components to be added to this container\n\n\nUnless configured with a layout, a Con...

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

\n\n\n

Unless configured with a layout, a Container simply renders child Components serially into\nits encapsulating element and performs no sizing or positioning upon them.

\n

Example:

\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

Each item may be:

\n
    \n
  • A Component
  • \n
  • A Component configuration object
  • \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

Every Component class has its own xtype.

\n

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

\n

Notes:

\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

Do not specify contentEl or\nhtml with items.

\n\n
The Ext.container.Container.layout for the form panel's immediate child items. ...

The Ext.container.Container.layout for the form panel's immediate child items.\nDefaults to 'anchor'.

\n

Defaults to: "anchor"

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 for this Component.

\n

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

\n
Only valid when a sibling element of a Splitter within a\nVBox or HBox layout. ...

Only valid when a sibling element of a Splitter within a\nVBox or HBox layout.

\n\n

Specifies that if an immediate sibling Splitter is moved, the Component on the other side is resized, and this\nComponent maintains its configured flex value.

\n

Defaults to: false

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'.

\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: ""

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'.

\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
An object or array of objects that will provide custom functionality for this component. ...

An object or array of objects that will provide custom functionality for this 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
If set to true, sets up an interval task (using the pollInterval) in which the\npanel's fields are repeatedly checked ...

If set to true, sets up an interval task (using the pollInterval) in which the\npanel's fields are repeatedly checked for changes in their values. This is in addition to the normal detection\neach field does on its own input element, and is not needed in most cases. It does, however, provide a\nmeans to absolutely guarantee detection of all changes including some edge cases in some browsers which\ndo not fire native events. Defaults to false.

\n
Interval in milliseconds at which the form's fields are checked for value changes. ...

Interval in milliseconds at which the form's fields are checked for value changes. Only used if\nthe pollForChanges option is set to true. Defaults to 500 milliseconds.

\n
Prevent a Header from being created and shown. ...

Prevent a Header from being created and shown.

\n

Defaults to: false

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
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 renderes 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 render also.

\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 ExtJS and 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

Defaults to: null

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"

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 Ext.Shadow, or a string indicating the shadow's display Ext.Shadow.mode. Set to false to disable the\nshadow.

\n

Defaults to: "sides"

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.\nAuto-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

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

To set the state provider for the current page:

\n
Ext.state.Manager.setProvider(new Ext.state.CookieProvider({\n    expires: new Date(new Date().getTime()+(1000*60*60*24*7)), //7 days from now\n}));\n
\n

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

\n

To save state, a stateful object first serializes its state by\ncalling getState. By default, this function does\nnothing. The developer must provide an implementation which returns an\nobject hash which represents the restorable state of the object.

\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

During construction, a stateful object attempts to restore\nits state by calling Ext.state.Manager.get passing the\nstateId

\n

The resulting object is passed to applyState.\nThe default implementation of applyState simply copies\nproperties into the object, but a developer may override this to support\nmore behaviour.

\n

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

\n\n

Defaults to: true

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
The class that is added to the content target when you set styleHtmlContent to true. ...

The class that is added to the content target when you set styleHtmlContent to true.

\n

Defaults to: "x-html"

True to automatically style the html inside the content target of this component (body for panels). ...

True to automatically style the html inside the content target of this component (body for panels).

\n

Defaults to: false

If true, suspend calls to doLayout. ...

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

\n

Defaults to: false

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
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\npreventHeader is set to true.

\n

Defaults to: ""

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 butto).

\n

Defaults to: false

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, panel){\n        // refresh logic\n    }\n},\n{\n    type:'help',\n    tooltip: 'Get Help',\n    handler: function(event, toolEl, panel){\n        // show help here\n    }\n}]\n
\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
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"

A set style for a component. ...

A set style for a component. Can be a string or an Array of multiple strings (UIs)

\n

Defaults to: "default"

 

The width of this component in pixels.

\n

The width of this component in pixels.

\n
The xtype configuration option can be used to optimize Component creation and rendering. ...

The xtype configuration option can be used to optimize Component creation and rendering. It serves as a\nshortcut to the full componet name. For example, the component Ext.button.Button has an xtype of button.

\n\n

You can define your own xtype on a custom component by specifying the\nalias config option with a prefix of widget. For example:

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

Any Component can be created implicitly as an object config with an xtype specified, allowing it to be\ndeclared and passed into the rendering pipeline without actually being instantiated as an object. Not only is\nrendering deferred, but the actual creation of the object itself is also deferred, saving memory and resources\nuntil they are actually needed. In complex, nested layouts containing many Components, this can make a\nnoticeable improvement in performance.

\n\n
// Explicit creation of contained Components:\nvar panel = new Ext.Panel({\n   ...\n   items: [\n      Ext.create('Ext.button.Button', {\n         text: 'OK'\n      })\n   ]\n};\n\n// Implicit creation using xtype:\nvar panel = new Ext.Panel({\n   ...\n   items: [{\n      xtype: 'button',\n      text: 'OK'\n   }]\n};\n
\n\n

In the first example, the button will always be created immediately during the panel's initialization. With\nmany added Components, this approach could potentially slow the rendering of the page. In the second example,\nthe button will not be created or rendered until the panel is actually displayed in the browser. If the panel\nis never displayed (for example, if it is a tab that remains hidden) then the button will never be created and\nwill never consume any resources whatsoever.

\n
Defined By

Properties

If this Panel is configured draggable, this property will contain an instance of Ext.dd.DragSource which handles drag...

If this Panel is configured draggable, this property 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
 

Read-only property indicating whether or not the component can be dragged

\n

Read-only property indicating whether or not the component can be dragged

\n
Only present for floating Components which were inserted as descendant items of floating Containers. ...

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

\n\n

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

\n\n

For floating Components which are child items of a Container, the floatParent will be the 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

For example, the dropdown BoundList of a ComboBox which is in a Window will have the\nWindow as its floatParent

\n\n

See floating and zIndexManager

\n
Read-only property indicating the width of any framing elements which were added within the encapsulating element\nto ...

Read-only property indicating the width of any framing elements which were added within the encapsulating element\nto provide graphical, rounded borders. See the frame config.

\n\n

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

\n
  • top : Number

    The width of the top framing element in pixels.

    \n
  • right : Number

    The width of the right framing element in pixels.

    \n
  • bottom : Number

    The width of the bottom framing element in pixels.

    \n
  • left : Number

    The width of the left framing element in pixels.

    \n
 

The MixedCollection containing all the child items of this container.

\n

The MixedCollection containing all the child items of this container.

\n
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 its disabled. Components like FieldContainer, FieldSet, Field, Button, Tab\noverride this property to false since they want to implement custom disable logic.

\n
 

Fired when the error message of any field within the container changes.

\n

Fired when the error message of any field within the container changes.

\n
 

Fired when the validity of any field within the container changes.

\n

Fired when the validity of any field within the container changes.

\n
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). Read-only.

\n\n

Note: to access items within the Container see itemId.

\n
 

Read-only property indicating whether or not the component has been rendered.

\n

Read-only property indicating whether or not the component has been rendered.

\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        return 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, or if not found the global ZIndexManager is\nused.

\n\n

See floating and floatParent

\n

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
    • 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

Returns

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, the Container\nwill recalculate its internal layout at this time too.

\n\n

Note that the default layout manager simply renders child Components sequentially into 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, so that only one layout recalculation is performed.

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

Warning:

\n\n

Components directly managed by the BorderLayout layout manager\nmay not be removed or added. See the Notes for BorderLayout\nfor more details.

\n

Parameters

  • component : Ext.Component[]/Ext.Component...

    Either one or more Components to add or an Array of Components to add.\nSee items for additional information.

    \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

Parameters

  • cls : String

    The CSS class name to add

    \n

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

  • cls : String

    The CSS class name to add

    \n

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

  • cls : 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 panel. ...

Adds docked item(s) to the panel.

\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 ('top', 'right',\n'bottom', 'left').

    \n
  • pos : Number (optional)

    The index at which the Component will be added

    \n
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

  • o : Object/String

    Either an object with event names as properties with a value of true or the first\nevent name string if multiple event names are being passed as separate parameters. Usage:

    \n\n
    this.addEvents({\n    storeloaded: true,\n    storecleared: true\n});\n
    \n
  • more : String... (optional)

    Additional event names if multiple event names are being passed as separate\nparameters. Usage:

    \n\n
    this.addEvents('storeloaded', 'storecleared');\n
    \n
Appends an event handler to this object. ...

Appends an event handler to this object.

\n

Parameters

  • eventName : String

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

    \n\n
  • fn : Function

    The method the event invokes. Will be called with arguments given to\nfireEvent plus the options parameter described below.

    \n\n
  • scope : Object (optional)

    The scope (this reference) in which the handler function is executed. If\nomitted, 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 argument to every event handler.

    \n\n\n\n\n

    This object may contain any of the following properties:

    \n\n\n\n\n
      \n
    • scope : Object

      \n\n

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

    • \n
    • delay : Number

      \n\n

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

    • \n
    • single : Boolean

      \n\n

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

    • \n
    • buffer : Number

      \n\n

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

    • \n
    • target : Observable

      \n\n

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

    • \n
    • element : String

      \n\n

      This option is only valid for listeners bound to Components. The name of a Component\nproperty 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\nComponents which will exist only after the Component is rendered.\nFor 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
    \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\n\n\n

    Attaching multiple handlers in 1 call

    \n\n\n\n\n

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

    \n\n\n\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\n\n\n

    One can also specify options for each event handler separately:

    \n\n\n\n\n
    myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
    \n\n
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
  • opt : Object (optional)

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

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

Add events that will trigger the state to be saved.

\n

Parameters

  • events : String/String[]

    The event name or an array of event names.

    \n
Method which adds a specified UI + uiCls to the components element. ...

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
( Number adjWidth, Number adjHeight, Boolean isSetSize, Ext.Component callingContainer )
Occurs after componentLayout is run. ...

Occurs after componentLayout is run.

\n

Parameters

  • adjWidth : Number

    The box-adjusted width that was set

    \n
  • adjHeight : Number

    The box-adjusted height that was set

    \n
  • isSetSize : Boolean

    Whether or not the height/width are stored on the component permanently

    \n
  • callingContainer : Ext.Component

    Container requesting the layout. Only used when isSetSize is false.

    \n
Aligns this floating Component to the specified element ...

Aligns this floating Component to the specified element

\n

Parameters

  • element : Ext.Component/Ext.Element/HTMLElement/String

    The element or Ext.Component to align to. If passing a component, it must be a\nomponent instance. If a string id is passed, it will be used as an element id.

    \n
  • position : String (optional)

    The position to align to (see Ext.Element.alignTo for more details).

    \n

    Defaults to: "tl-bl?"

  • offsets : Number[] (optional)

    Offset the positioning by [x, y]

    \n

Returns

Perform custom animation on this object. ...

Perform custom animation on this object.

\n

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

\n

The sole parameter is an object which specifies start property values, end property values, and properties which\ndescribe the timeline. Of the properties listed below, only to is mandatory.

\n

Properties include

    \n
  • from
    An object which specifies start values for the properties being animated.\nIf not supplied, properties are animated from current settings. The actual properties which may be animated depend upon\nths object being animated. See the sections below on Element and Component animation.
  • \n
  • to
    An object which specifies end values for the properties being animated.
  • \n
  • duration
    The duration in milliseconds for which the animation will run.
  • \n
  • easing
    A string value describing an easing type to modify the rate of change from the default linear to non-linear. Values may be one of:
      \n
    • ease
    • \n
    • easeIn
    • \n
    • easeOut
    • \n
    • easeInOut
    • \n
    • backIn
    • \n
    • backOut
    • \n
    • elasticIn
    • \n
    • elasticOut
    • \n
    • bounceIn
    • \n
    • bounceOut
    • \n
  • \n
  • keyframes
    This is an object which describes the state of animated properties at certain points along the timeline.\nit is an object containing properties who's names are the percentage along the timeline being described and who's values specify the animation state at that point.
  • \n
  • listeners
    This is a standard listeners configuration object which may be used\nto inject behaviour at either the beforeanimate event or the afteranimate event.
  • \n

\n

Animating an Element

\nWhen animating an Element, the following properties may be specified in from, to, and keyframe objects:
    \n
  • x
    The page X position in pixels.
  • \n
  • y
    The page Y position in pixels
  • \n
  • left
    The element's CSS left value. Units must be supplied.
  • \n
  • top
    The element's CSS top value. Units must be supplied.
  • \n
  • width
    The element's CSS width value. Units must be supplied.
  • \n
  • height
    The element's CSS height value. Units must be supplied.
  • \n
  • scrollLeft
    The element's scrollLeft value.
  • \n
  • scrollTop
    The element's scrollLeft value.
  • \n
  • opacity
    The element's opacity value. This must be a value between 0 and 1.
  • \n
\n

Be aware than animating an Element which is being used by an Ext Component without in some way informing the Component about the changed element state\nwill result in incorrect Component behaviour. This is because the Component will be using the old state of the element. To avoid this problem, it is now possible to\ndirectly animate certain properties of Components.

\n

Animating a Component

\nWhen animating an Element, the following properties may be specified in from, to, and keyframe objects:
    \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
  • width
    The Component's width value in pixels.
  • \n
  • dynamic
    Specify as true to update the Component's layout (if it is a Container) at every frame\nof the animation. Use sparingly as laying out on every intermediate size change is an expensive operation.
  • \n
\n

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

\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

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

\n\n

Parameters

  • config : Object

    An object containing properties which describe the animation's start and end states, and the timeline of the animation.

    \n

Returns

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

Occurs before componentLayout is run. ...

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

\n

Parameters

  • adjWidth : Number

    The box-adjusted width that was set

    \n
  • adjHeight : Number

    The box-adjusted height that was set

    \n
  • isSetSize : Boolean

    Whether or not the height/width are stored on the component permanently

    \n
  • callingContainer : Ext.Component

    Container requesting sent the layout. Only used when isSetSize is false.

    \n
Occurs before componentLayout is run. ...

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

\n
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

( Array/Arguments args ) : Objectprotected
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        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\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

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object

    \n

Returns

  • Object

    Returns the result after calling the overridden method

    \n
( Array/Arguments args ) : Objectprotected
Call the parent's overridden method. ...

Call the parent's overridden method. For example:

\n\n
Ext.define('My.own.A', {\n    constructor: function(test) {\n        alert(test);\n    }\n});\n\nExt.define('My.own.B', {\n    extend: 'My.own.A',\n\n    constructor: function(test) {\n        alert(test);\n\n        this.callParent([test + 1]);\n    }\n});\n\nExt.define('My.own.C', {\n    extend: 'My.own.B',\n\n    constructor: function() {\n        alert(\"Going to call parent's overriden constructor...\");\n\n        this.callParent(arguments);\n    }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n                         // alerts '2', then alerts '3'\n
\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 from the superclass' method

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

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

\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 always passed as the last argument.

    \n

Returns

Center this Component in its container. ...

Center this Component in its container.

\n

Returns

Forces each field within the form panel to\ncheck if its value has changed. ...

Forces each field within the form panel to\ncheck if its value has changed.

\n
Retrieves the first direct child of this container which matches the passed selector. ...

Retrieves the first direct child of this container which matches the passed selector.\nThe passed in selector must comply with an Ext.ComponentQuery selector.

\n

Parameters

  • selector : String (optional)

    An Ext.ComponentQuery selector. If no selector is\nspecified, the first child will be returned.

    \n
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

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
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

  • direction : String

    . The direction to collapse towards. Must be one of

    \n\n
      \n
    • Ext.Component.DIRECTION_TOP
    • \n
    • Ext.Component.DIRECTION_RIGHT
    • \n
    • Ext.Component.DIRECTION_BOTTOM
    • \n
    • Ext.Component.DIRECTION_LEFT
    • \n
    \n\n
  • animate : Boolean (optional)

    True to animate the transition, else false (defaults to the value of the\nanimCollapse panel config)

    \n

Returns

Ensures that the plugins array contains fully constructed plugin instances. ...

Ensures that the plugins array contains fully constructed plugin instances. This converts any configs into their\nappropriate instances.

\n
Destroys the Component. ...

Destroys the Component.

\n
Disable the component. ...

Disable the component.

\n

Parameters

  • silent : Boolean (optional)

    Passing true will supress the 'disable' event from being fired.

    \n

    Defaults to: false

Handles autoRender. ...

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

\n
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

Parameters

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 into which this Component is\nto be constrained. Defaults to the element into which this floating Component was 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

Returns

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.

\n

Parameters

  • selector : String (optional)

    An Ext.ComponentQuery selector. If no selector is\nspecified, the first child will be returned.

    \n
Enable the component ...

Enable the component

\n

Parameters

  • silent : Boolean (optional)

    Passing true will supress the 'enable' event from being fired.

    \n

    Defaults to: false

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.override(Ext.form.field.Base, {\n    //  Add functionality to Field's initComponent to enable the change event to bubble\n    initComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n        this.enableBubble('change');\n    }),\n\n    //  We know that we want Field's events to bubble directly to the FormPanel.\n    getBubbleTarget : function() {\n        if (!this.formPanel) {\n            this.formPanel = this.findParentByType('form');\n        }\n        return this.formPanel;\n    }\n});\n\nvar myForm = new Ext.formPanel({\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

  • events : String/String[]

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

    \n
Expands the panel body so that it becomes visible. ...

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

\n

Parameters

  • animate : Boolean (optional)

    True to animate the transition, else false (defaults to the value of the\nanimCollapse panel config)

    \n

Returns

This method finds the topmost active layout who's processing will eventually determine the size and position of\nthis ...

This method finds the topmost active layout who's processing will eventually determine the size and position of\nthis Component.

\n\n

This method is useful when dynamically adding Components into Containers, and some processing must take place\nafter the final sizing and positioning of the Component has been performed.

\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

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

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
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

Returns

Forces this component to redo its componentLayout. ...

Forces this component to redo its componentLayout.

\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

Gets the current box measurements of the component's underlying element. ...

Gets the current box measurements 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

  • Object

    box An object in the format {x, y, width, height}

    \n
Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy. ...

Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.

\n

Returns

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

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

Parameters

  • comp : String/Number

    The component id, itemId or position to find

    \n

Returns

Finds a docked component by id, itemId or position. ...

Finds a docked component by id, itemId or position. Also see getDockedItems

\n

Parameters

Returns

Retrieve an array of all currently docked Components. ...

Retrieve an array of all currently docked Components.

\n

Parameters

Returns

Retrieves the top level element representing this component. ...

Retrieves the top level element representing this component.

\n

Returns

Provides access to the Form which this Panel contains. ...

Provides access to the Form which this Panel contains.

\n

Returns

Gets the current height of the component's underlying element. ...

Gets the current height of the component's underlying element.

\n

Returns

Retrieves the id of this component. ...

Retrieves the id of this component. Will autogenerate an id if one has not already been set.

\n

Returns

This function takes the position argument passed to onRender and returns a DOM element that you can use in the\ninsert...

This function takes the position argument passed to onRender and returns a DOM element that you can use in the\ninsertBefore.

\n

Parameters

  • position : String/Number/Ext.Element/HTMLElement

    Index, element id or element you want to put this\ncomponent before.

    \n

Returns

  • HTMLElement

    DOM element that you can use in the insertBefore

    \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

Retrieves a plugin by its pluginId which has been bound to this component. ...

Retrieves a plugin by its pluginId which has been bound to this component.

\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
Returns the currently loaded Ext.data.Model instance if one was loaded via loadRecord. ...

Returns the currently loaded Ext.data.Model instance if one was loaded via loadRecord.

\n

Returns

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
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

Gets the state id for this object. ...

Gets the state id for this object.

\n

Returns

  • String

    The state id, null if not found.

    \n
Convenience function for fetching the current value of each field in the form. ...

Convenience function for fetching the current value of each field in the form. This is the same as calling\nthis.getForm().getValues()

\n

Returns

  • Object

    The current form field values, keyed by field name

    \n
Gets the current width of the component's underlying element. ...

Gets the current width of the component's underlying element.

\n

Returns

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

Returns

  • String

    The xtype hierarchy string

    \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

This method has been deprecated since 4.0

Replaced by getActiveAnimation

\n

Returns

Checks to see if this object has any listeners for a specified event ...

Checks to see if this object has any listeners for a specified event

\n

Parameters

  • eventName : String

    The name of the event to check for

    \n

Returns

  • Boolean

    True if the event is being listened for, 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
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

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

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

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

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        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n
\n

Parameters

Returns

  • Object

    mixins The mixin prototypes as key - value pairs

    \n
Initializes the FieldAncestor's state; this must be called from the initComponent method\nof any components importing ...

Initializes the FieldAncestor's state; this must be called from the initComponent method\nof any components importing this mixin.

\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 event after the\nComponent has been inserted.

\n

Parameters

  • index : Number

    The index at which the Component will be inserted\ninto the Container's items collection

    \n
  • component : Ext.Component

    The child Component to insert.

    \nExt uses lazy rendering, and will only render the inserted Component should\nit become necessary.

    \nA 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.

    \nFor a list of all available xtypes, see Ext.Component.

    \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 component is the descendant of a particular container. ...

Determines whether this component is the descendant of a particular container.

\n

Parameters

Returns

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
Returns true if this component is visible. ...

Returns true if this component is visible.

\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
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

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
This is a proxy for the underlying BasicForm's Ext.form.Basic.load call. ...

This is a proxy for the underlying BasicForm's Ext.form.Basic.load call.

\n

Parameters

Loads an Ext.data.Model into this form (internally just calls Ext.form.Basic.loadRecord)\nSee also trackResetOnLoad. ...

Loads an Ext.data.Model into this form (internally just calls Ext.form.Basic.loadRecord)\nSee also trackResetOnLoad.

\n

Parameters

Returns

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
  • opt : Object (optional)

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

    \n\n
Moves a Component within the Container ...

Moves a Component within the Container

\n

Parameters

  • fromIdx : Number

    The index the Component you wish to move is currently at.

    \n
  • toIdx : Number

    The new index for the Component.

    \n

Returns

  • Ext.Component

    component The Component (or config object) that was moved.

    \n
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
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 refered 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
( String eventName, Function fn, [Object scope], [Object options] )
Shorthand for addListener. ...

Shorthand for addListener.

\n\n

Appends an event handler to this object.

\n

Parameters

  • eventName : String

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

    \n\n
  • fn : Function

    The method the event invokes. Will be called with arguments given to\nfireEvent plus the options parameter described below.

    \n\n
  • scope : Object (optional)

    The scope (this reference) in which the handler function is executed. If\nomitted, 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 argument to every event handler.

    \n\n\n\n\n

    This object may contain any of the following properties:

    \n\n\n\n\n
      \n
    • scope : Object

      \n\n

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

    • \n
    • delay : Number

      \n\n

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

    • \n
    • single : Boolean

      \n\n

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

    • \n
    • buffer : Number

      \n\n

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

    • \n
    • target : Observable

      \n\n

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

    • \n
    • element : String

      \n\n

      This option is only valid for listeners bound to Components. The name of a Component\nproperty 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\nComponents which will exist only after the Component is rendered.\nFor 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
    \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\n\n\n

    Attaching multiple handlers in 1 call

    \n\n\n\n\n

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

    \n\n\n\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\n\n\n

    One can also specify options for each event handler separately:

    \n\n\n\n\n
    myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
    \n\n
Called when a Ext.form.field.Field instance is added to the container's subtree. ...

Called when a Ext.form.field.Field instance is added to the container's subtree.

\n

Parameters

Called when a Ext.form.field.Field instance is removed from the container's subtree. ...

Called when a Ext.form.field.Field instance is removed from the container's subtree.

\n

Parameters

Called when a Ext.form.Labelable instance is added to the container's subtree. ...

Called when a Ext.form.Labelable instance is added to the container's subtree.

\n

Parameters

Called when a Ext.form.Labelable instance is removed from the container's subtree. ...

Called when a Ext.form.Labelable instance is removed from the container's subtree.

\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 refered 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
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

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

Parameters

  • origin : Object

    The Observable whose events this object is to relay.

    \n
  • events : String[]

    Array of event names to relay.

    \n
  • prefix : String
    \n
Removes a component from this container. ...

Removes a component from this container. Fires the beforeremove event before removing, then fires\nthe remove event after the component has been removed.

\n

Parameters

Returns

Removes all components from this container. ...

Removes all components from this container.

\n

Parameters

Returns

Removes items in the childEls array based on the return value of a supplied test function. ...

Removes items in the childEls array based on the return value of a supplied test function. The function is called\nwith a entry in childEls and if the test function return true, that entry is removed. If false, that entry is\nkept.

\n

Parameters

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
Method which removes a specified UI + uiCls from the components element. ...

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
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
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
Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence. ...

Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence. This is the opposite of syncFx.

\n

Returns

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

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

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

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\niconchange event after completion.

\n

Parameters

  • newIconCls : String

    The new CSS class name

    \n
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
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

    The new x position

    \n
  • y : Number

    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

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

  • left : Number

    The new left

    \n
  • top : Number

    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 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

Set a title for the panel's header. ...

Set a title for the panel's header. See Ext.panel.Header.title.

\n

Parameters

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
Convenience function to hide or show this component by boolean. ...

Convenience function to hide or show this component by boolean.

\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

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

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

    The new x position

    \n
  • y : Number

    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
Start editing the specified grid at the specified position. ...

Start editing the specified grid at the specified position.

\n

Parameters

  • record : Ext.data.Model

    The Store data record which backs the row to be edited.

    \n
  • columnHeader : Ext.data.Model

    The Column object defining the column to be edited.

    \n
Start an interval task to continuously poll all the fields in the form for changes in their\nvalues. ...

Start an interval task to continuously poll all the fields in the form for changes in their\nvalues. This is normally started automatically by setting the pollForChanges config.

\n

Parameters

  • interval : Number

    The interval in milliseconds at which the check should run.

    \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        return this;\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\nany additional effects that ...

Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.

\n

Returns

Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that ...

Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.

\n

This method has been deprecated since 4.0

Replaced by stopAnimation

\n

Returns

Stop a running interval task that was started by startPolling. ...

Stop a running interval task that was started by startPolling.

\n
This is a proxy for the underlying BasicForm's Ext.form.Basic.submit call. ...

This is a proxy for the underlying BasicForm's Ext.form.Basic.submit call.

\n

Parameters

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\nrun concurrently. ...

Ensures that all effects queued after syncFx is called on this object are\nrun concurrently. This is the opposite of sequenceFx.

\n

Returns

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 ZIndexManag...

Brings this floating Component to the front of any other visible, floating Components managed by the same ZIndexManager

\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

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

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
Walks up the ownerCt axis looking for an ancestor Container which matches the passed simple selector. ...

Walks up the ownerCt axis looking for an ancestor Container which matches the passed simple selector.

\n\n

Example:

\n\n
var owningTabPanel = grid.up('tabpanel');\n
\n

Parameters

  • selector : String (optional)

    The simple selector to test.

    \n

Returns

( String/Object htmlOrData, [Boolean loadScripts], [Function callback] )
Update the content area of a component. ...

Update the content area of a component.

\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
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

Defined By

Static Methods

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

( Ext.Base fromClass, String/String[] members ) : Ext.Basestatic
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 : String/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

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

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

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.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n
\n

Parameters

Override prototype members of this class. ...

Override prototype members of this class. Overridden methods can be invoked via\ncallOverridden

\n\n
Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\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

Parameters

Returns

Defined By

Events

Fires after a Component has been visually activated. ...

Fires after a Component has been visually activated.

\n

Parameters

@bubbles\nFires after any Ext.Component is added or inserted into the container. ...

@bubbles\nFires after any Ext.Component is added or inserted into the container.

\n

Parameters

Fires after a Component had been added to a Container. ...

Fires after a Component had been added to a Container.

\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

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 postprocesed by any\nafterRender method defined for the Component.

\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

Parameters

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

Fires before this panel is collapsed. ...

Fires before this panel is collapsed. Return false to prevent the collapse.

\n

Parameters

  • p : Ext.panel.Panel

    The Panel being collapsed.

    \n
  • direction : String

    . The direction of the collapse. One of

    \n\n
      \n
    • Ext.Component.DIRECTION_TOP
    • \n
    • Ext.Component.DIRECTION_RIGHT
    • \n
    • Ext.Component.DIRECTION_BOTTOM
    • \n
    • Ext.Component.DIRECTION_LEFT
    • \n
    \n\n
  • animate : Boolean

    True if the collapse is animated, else false.

    \n
  • eOpts : Object

    The options object passed to Ext.util.Observable.addListener.

    \n\n\n\n
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

Parameters

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

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

Parameters

Fires before the component is rendered. ...

Fires before the component is rendered. Return false from an event handler to stop the\nrender.

\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

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 after the Panel has been resized. ...

Fires after the Panel has been resized.

\n

Parameters

Fires after this Panel hass collapsed. ...

Fires after this Panel hass 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

Parameters

Fires after the component is disabled. ...

Fires after the component is disabled.

\n

Parameters

Fires after the component is enabled. ...

Fires after the component is enabled.

\n

Parameters

Fires after this Panel has expanded. ...

Fires after this Panel has expanded.

\n

Parameters

Fires when the active error message is changed for any one of the Ext.form.Labelable\ninstances within this container. ...

Fires when the active error message is changed for any one of the Ext.form.Labelable\ninstances within this container.

\n

Parameters

Fires when the validity state of any one of the Ext.form.field.Field instances within this\ncontainer changes. ...

Fires when the validity state of any one of the Ext.form.field.Field instances within this\ncontainer changes.

\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

Parameters

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

@bubbles\nFires after any Ext.Component is removed from the container. ...

@bubbles\nFires after any Ext.Component is removed from the container.

\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

Parameters

Fires after the component markup is rendered. ...

Fires after the component markup is rendered.

\n

Parameters

Fires after the component is resized. ...

Fires after the component is resized.

\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

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

Fires after the Panel title has been set or changed. ...

Fires after the Panel title has been set or changed.

\n

Parameters

","allMixins":["Ext.form.FieldAncestor","Ext.util.Floating","Ext.util.Observable","Ext.util.Animate","Ext.state.Stateful"],"meta":{},"requires":["Ext.tip.ToolTip","Ext.util.HashMap","Ext.util.KeyNav"],"deprecated":null,"extends":"Ext.form.Panel","inheritable":false,"static":false,"superclasses":["Ext.Base","Ext.AbstractComponent","Ext.Component","Ext.container.AbstractContainer","Ext.container.Container","Ext.panel.AbstractPanel","Ext.panel.Panel","Ext.form.Panel","Ext.grid.RowEditor"],"singleton":false,"code_type":"ext_define","alias":null,"statics":{"property":[],"css_var":[],"css_mixin":[],"cfg":[],"method":[{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"addStatics","id":"static-method-addStatics"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"borrow","id":"static-method-borrow"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"create","id":"static-method-create"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"createAlias","id":"static-method-createAlias"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"getName","id":"static-method-getName"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"implement","id":"static-method-implement"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"override","id":"static-method-override"}],"event":[]},"subclasses":[],"uses":[],"protected":false,"mixins":[],"members":{"property":[{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":null,"protected":false,"name":"dd","id":"property-dd"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"draggable","id":"property-draggable"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":null,"protected":false,"name":"floatParent","id":"property-floatParent"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"frameSize","id":"property-frameSize"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"items","id":"property-items"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"maskOnDisable","id":"property-maskOnDisable"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.form.FieldAncestor","template":null,"required":null,"protected":true,"name":"onFieldErrorChange","id":"property-onFieldErrorChange"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.form.FieldAncestor","template":null,"required":null,"protected":true,"name":"onFieldValidityChange","id":"property-onFieldValidityChange"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"ownerCt","id":"property-ownerCt"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"rendered","id":"property-rendered"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.Base","template":null,"required":null,"protected":true,"name":"self","id":"property-self"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":null,"protected":false,"name":"zIndexManager","id":"property-zIndexManager"}],"css_var":[],"css_mixin":[],"cfg":[{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":false,"protected":false,"name":"activeItem","id":"cfg-activeItem"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"animCollapse","id":"cfg-animCollapse"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":false,"protected":false,"name":"autoDestroy","id":"cfg-autoDestroy"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"autoEl","id":"cfg-autoEl"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"autoRender","id":"cfg-autoRender"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"autoScroll","id":"cfg-autoScroll"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"autoShow","id":"cfg-autoShow"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":null,"required":false,"protected":false,"name":"baseCls","id":"cfg-baseCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"bbar","id":"cfg-bbar"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":null,"required":false,"protected":false,"name":"bodyBorder","id":"cfg-bodyBorder"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":null,"required":false,"protected":false,"name":"bodyCls","id":"cfg-bodyCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":null,"required":false,"protected":false,"name":"bodyPadding","id":"cfg-bodyPadding"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":null,"required":false,"protected":false,"name":"bodyStyle","id":"cfg-bodyStyle"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"border","id":"cfg-border"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":false,"protected":false,"name":"bubbleEvents","id":"cfg-bubbleEvents"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"buttonAlign","id":"cfg-buttonAlign"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"buttons","id":"cfg-buttons"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"childEls","id":"cfg-childEls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"closable","id":"cfg-closable"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"closeAction","id":"cfg-closeAction"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"cls","id":"cfg-cls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"collapseDirection","id":"cfg-collapseDirection"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"collapseFirst","id":"cfg-collapseFirst"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"collapseMode","id":"cfg-collapseMode"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"collapsed","id":"cfg-collapsed"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"collapsedCls","id":"cfg-collapsedCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"collapsible","id":"cfg-collapsible"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"componentCls","id":"cfg-componentCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"componentLayout","id":"cfg-componentLayout"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"contentEl","id":"cfg-contentEl"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"data","id":"cfg-data"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":null,"required":false,"protected":false,"name":"defaultDockWeights","id":"cfg-defaultDockWeights"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":false,"protected":false,"name":"defaultType","id":"cfg-defaultType"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":false,"protected":false,"name":"defaults","id":"cfg-defaults"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"disabled","id":"cfg-disabled"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"disabledCls","id":"cfg-disabledCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"dockedItems","id":"cfg-dockedItems"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"draggable","id":"cfg-draggable"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"fbar","id":"cfg-fbar"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.form.FieldAncestor","template":null,"required":false,"protected":false,"name":"fieldDefaults","id":"cfg-fieldDefaults"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"floatable","id":"cfg-floatable"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"floating","id":"cfg-floating"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":null,"required":false,"protected":false,"name":"focusOnToFront","id":"cfg-focusOnToFront"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"frame","id":"cfg-frame"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"frameHeader","id":"cfg-frameHeader"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"headerPosition","id":"cfg-headerPosition"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"height","id":"cfg-height"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"hidden","id":"cfg-hidden"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"hideCollapseTool","id":"cfg-hideCollapseTool"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"hideMode","id":"cfg-hideMode"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"html","id":"cfg-html"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"iconCls","id":"cfg-iconCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"id","id":"cfg-id"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"itemId","id":"cfg-itemId"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":false,"protected":false,"name":"items","id":"cfg-items"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":null,"required":false,"protected":false,"name":"layout","id":"cfg-layout"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"lbar","id":"cfg-lbar"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":null,"required":false,"protected":false,"name":"listeners","id":"cfg-listeners"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"loader","id":"cfg-loader"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"maintainFlex","id":"cfg-maintainFlex"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"margin","id":"cfg-margin"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"maxHeight","id":"cfg-maxHeight"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"maxWidth","id":"cfg-maxWidth"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"minButtonWidth","id":"cfg-minButtonWidth"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"minHeight","id":"cfg-minHeight"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"minWidth","id":"cfg-minWidth"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"overCls","id":"cfg-overCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"overlapHeader","id":"cfg-overlapHeader"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"padding","id":"cfg-padding"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"placeholder","id":"cfg-placeholder"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"plugins","id":"cfg-plugins"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":null,"required":false,"protected":false,"name":"pollForChanges","id":"cfg-pollForChanges"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":null,"required":false,"protected":false,"name":"pollInterval","id":"cfg-pollInterval"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"preventHeader","id":"cfg-preventHeader"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"rbar","id":"cfg-rbar"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"renderData","id":"cfg-renderData"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"renderSelectors","id":"cfg-renderSelectors"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"renderTo","id":"cfg-renderTo"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"renderTpl","id":"cfg-renderTpl"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"resizable","id":"cfg-resizable"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"resizeHandles","id":"cfg-resizeHandles"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":false,"protected":false,"name":"saveDelay","id":"cfg-saveDelay"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":null,"required":false,"protected":false,"name":"shadow","id":"cfg-shadow"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":false,"protected":false,"name":"stateEvents","id":"cfg-stateEvents"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":false,"protected":false,"name":"stateId","id":"cfg-stateId"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":false,"protected":false,"name":"stateful","id":"cfg-stateful"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"style","id":"cfg-style"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"styleHtmlCls","id":"cfg-styleHtmlCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"styleHtmlContent","id":"cfg-styleHtmlContent"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":false,"protected":false,"name":"suspendLayout","id":"cfg-suspendLayout"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"tbar","id":"cfg-tbar"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"title","id":"cfg-title"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"titleCollapse","id":"cfg-titleCollapse"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"toFrontOnShow","id":"cfg-toFrontOnShow"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":false,"protected":false,"name":"tools","id":"cfg-tools"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"tpl","id":"cfg-tpl"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"tplWriteMode","id":"cfg-tplWriteMode"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"ui","id":"cfg-ui"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"width","id":"cfg-width"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"xtype","id":"cfg-xtype"}],"method":[{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"constructor","id":"method-constructor"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"add","id":"method-add"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"addChildEls","id":"method-addChildEls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"addClass","id":"method-addClass"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"addCls","id":"method-addCls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"addClsWithUI","id":"method-addClsWithUI"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":false,"required":null,"protected":false,"name":"addDocked","id":"method-addDocked"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"addEvents","id":"method-addEvents"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"addListener","id":"method-addListener"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"addManagedListener","id":"method-addManagedListener"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":false,"required":null,"protected":false,"name":"addStateEvents","id":"method-addStateEvents"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"addUIClsToElement","id":"method-addUIClsToElement"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"afterComponentLayout","id":"method-afterComponentLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"alignTo","id":"method-alignTo"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"animate","id":"method-animate"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":false,"required":null,"protected":false,"name":"applyState","id":"method-applyState"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"beforeComponentLayout","id":"method-beforeComponentLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"beforeLayout","id":"method-beforeLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"bubble","id":"method-bubble"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"callOverridden","id":"method-callOverridden"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"callParent","id":"method-callParent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"cascade","id":"method-cascade"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"center","id":"method-center"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":false,"required":null,"protected":false,"name":"checkChange","id":"method-checkChange"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"child","id":"method-child"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"clearListeners","id":"method-clearListeners"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"clearManagedListeners","id":"method-clearManagedListeners"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"cloneConfig","id":"method-cloneConfig"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":false,"required":null,"protected":false,"name":"close","id":"method-close"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":false,"required":null,"protected":false,"name":"collapse","id":"method-collapse"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"constructPlugins","id":"method-constructPlugins"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"destroy","id":"method-destroy"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"disable","id":"method-disable"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"doAutoRender","id":"method-doAutoRender"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"doComponentLayout","id":"method-doComponentLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"doConstrain","id":"method-doConstrain"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"doLayout","id":"method-doLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"down","id":"method-down"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"enable","id":"method-enable"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"enableBubble","id":"method-enableBubble"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":false,"required":null,"protected":false,"name":"expand","id":"method-expand"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"findLayoutController","id":"method-findLayoutController"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"findParentBy","id":"method-findParentBy"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"findParentByType","id":"method-findParentByType"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"fireEvent","id":"method-fireEvent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"focus","id":"method-focus"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"forceComponentLayout","id":"method-forceComponentLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"getActiveAnimation","id":"method-getActiveAnimation"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"getBox","id":"method-getBox"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getBubbleTarget","id":"method-getBubbleTarget"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.Container","template":false,"required":null,"protected":false,"name":"getChildByElement","id":"method-getChildByElement"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":false,"required":null,"protected":false,"name":"getComponent","id":"method-getComponent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":false,"required":null,"protected":false,"name":"getDockedComponent","id":"method-getDockedComponent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":false,"required":null,"protected":false,"name":"getDockedItems","id":"method-getDockedItems"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getEl","id":"method-getEl"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":false,"required":null,"protected":false,"name":"getForm","id":"method-getForm"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getHeight","id":"method-getHeight"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getId","id":"method-getId"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getInsertPosition","id":"method-getInsertPosition"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"getLayout","id":"method-getLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getLoader","id":"method-getLoader"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getPlugin","id":"method-getPlugin"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"getPosition","id":"method-getPosition"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":false,"required":null,"protected":false,"name":"getRecord","id":"method-getRecord"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getSize","id":"method-getSize"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getState","id":"method-getState"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":false,"required":null,"protected":false,"name":"getStateId","id":"method-getStateId"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":false,"required":null,"protected":false,"name":"getValues","id":"method-getValues"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getWidth","id":"method-getWidth"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"getXType","id":"method-getXType"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getXTypes","id":"method-getXTypes"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Replaced by getActiveAnimation

\n","version":"4.0"},"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"hasActiveFx","id":"method-hasActiveFx"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"hasListener","id":"method-hasListener"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"hasUICls","id":"method-hasUICls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"hide","id":"method-hide"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":true,"required":null,"protected":false,"name":"initComponent","id":"method-initComponent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"initConfig","id":"method-initConfig"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.FieldAncestor","template":false,"required":null,"protected":true,"name":"initFieldAncestor","id":"method-initFieldAncestor"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"insert","id":"method-insert"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":false,"required":null,"protected":false,"name":"insertDocked","id":"method-insertDocked"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"is","id":"method-is"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isDescendantOf","id":"method-isDescendantOf"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isDisabled","id":"method-isDisabled"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isDraggable","id":"method-isDraggable"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isDroppable","id":"method-isDroppable"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isFloating","id":"method-isFloating"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isHidden","id":"method-isHidden"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isVisible","id":"method-isVisible"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isXType","id":"method-isXType"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":false,"required":null,"protected":false,"name":"load","id":"method-load"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":false,"required":null,"protected":false,"name":"loadRecord","id":"method-loadRecord"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"mon","id":"method-mon"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"move","id":"method-move"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"mun","id":"method-mun"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"nextNode","id":"method-nextNode"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"nextSibling","id":"method-nextSibling"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"on","id":"method-on"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.FieldAncestor","template":false,"required":null,"protected":true,"name":"onFieldAdded","id":"method-onFieldAdded"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.FieldAncestor","template":false,"required":null,"protected":true,"name":"onFieldRemoved","id":"method-onFieldRemoved"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.FieldAncestor","template":false,"required":null,"protected":true,"name":"onLabelableAdded","id":"method-onLabelableAdded"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.FieldAncestor","template":false,"required":null,"protected":true,"name":"onLabelableRemoved","id":"method-onLabelableRemoved"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"previousNode","id":"method-previousNode"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"previousSibling","id":"method-previousSibling"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"query","id":"method-query"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"relayEvents","id":"method-relayEvents"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"remove","id":"method-remove"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"removeAll","id":"method-removeAll"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"removeChildEls","id":"method-removeChildEls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"removeCls","id":"method-removeCls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"removeClsWithUI","id":"method-removeClsWithUI"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":false,"required":null,"protected":false,"name":"removeDocked","id":"method-removeDocked"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"removeListener","id":"method-removeListener"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"removeManagedListener","id":"method-removeManagedListener"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"removeUIClsFromElement","id":"method-removeUIClsFromElement"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"resumeEvents","id":"method-resumeEvents"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":false,"required":null,"protected":false,"name":"savePropToState","id":"method-savePropToState"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"sequenceFx","id":"method-sequenceFx"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"setActive","id":"method-setActive"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"setAutoScroll","id":"method-setAutoScroll"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setDisabled","id":"method-setDisabled"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setDocked","id":"method-setDocked"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setHeight","id":"method-setHeight"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":false,"required":null,"protected":false,"name":"setIconCls","id":"method-setIconCls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setLoading","id":"method-setLoading"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"setPagePosition","id":"method-setPagePosition"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"setPosition","id":"method-setPosition"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setSize","id":"method-setSize"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":false,"required":null,"protected":false,"name":"setTitle","id":"method-setTitle"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setUI","id":"method-setUI"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setVisible","id":"method-setVisible"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setWidth","id":"method-setWidth"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"show","id":"method-show"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"showAt","id":"method-showAt"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.RowEditor","template":false,"required":null,"protected":false,"name":"startEdit","id":"method-startEdit"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":false,"required":null,"protected":false,"name":"startPolling","id":"method-startPolling"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"statics","id":"method-statics"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"stopAnimation","id":"method-stopAnimation"},{"tagname":"method","deprecated":{"doc":"Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.","tagname":"deprecated","text":"

Replaced by stopAnimation

\n","version":"4.0"},"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"stopFx","id":"method-stopFx"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":false,"required":null,"protected":false,"name":"stopPolling","id":"method-stopPolling"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.form.Panel","template":false,"required":null,"protected":false,"name":"submit","id":"method-submit"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"suspendEvents","id":"method-suspendEvents"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"syncFx","id":"method-syncFx"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"toBack","id":"method-toBack"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"toFront","id":"method-toFront"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":false,"required":null,"protected":false,"name":"toggleCollapse","id":"method-toggleCollapse"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"un","id":"method-un"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"up","id":"method-up"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"update","id":"method-update"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"updateBox","id":"method-updateBox"}],"event":[{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"activate","id":"event-activate"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"add","id":"event-add"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"added","id":"event-added"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"afterlayout","id":"event-afterlayout"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"afterrender","id":"event-afterrender"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforeactivate","id":"event-beforeactivate"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"beforeadd","id":"event-beforeadd"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":null,"protected":false,"name":"beforeclose","id":"event-beforeclose"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":null,"protected":false,"name":"beforecollapse","id":"event-beforecollapse"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforedeactivate","id":"event-beforedeactivate"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforedestroy","id":"event-beforedestroy"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":null,"protected":false,"name":"beforeexpand","id":"event-beforeexpand"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforehide","id":"event-beforehide"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"beforeremove","id":"event-beforeremove"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforerender","id":"event-beforerender"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforeshow","id":"event-beforeshow"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":null,"protected":false,"name":"beforestaterestore","id":"event-beforestaterestore"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":null,"protected":false,"name":"beforestatesave","id":"event-beforestatesave"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.panel.AbstractPanel","template":null,"required":null,"protected":false,"name":"bodyresize","id":"event-bodyresize"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":null,"protected":false,"name":"collapse","id":"event-collapse"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"deactivate","id":"event-deactivate"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"destroy","id":"event-destroy"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"disable","id":"event-disable"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"enable","id":"event-enable"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":null,"protected":false,"name":"expand","id":"event-expand"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.form.FieldAncestor","template":null,"required":null,"protected":false,"name":"fielderrorchange","id":"event-fielderrorchange"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.form.FieldAncestor","template":null,"required":null,"protected":false,"name":"fieldvaliditychange","id":"event-fieldvaliditychange"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"hide","id":"event-hide"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":null,"protected":false,"name":"iconchange","id":"event-iconchange"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"move","id":"event-move"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"remove","id":"event-remove"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"removed","id":"event-removed"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"render","id":"event-render"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"resize","id":"event-resize"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"show","id":"event-show"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":null,"protected":false,"name":"staterestore","id":"event-staterestore"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":null,"protected":false,"name":"statesave","id":"event-statesave"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.panel.Panel","template":null,"required":null,"protected":false,"name":"titlechange","id":"event-titlechange"}]},"private":true,"component":true,"name":"Ext.grid.RowEditor","alternateClassNames":[],"id":"class-Ext.grid.RowEditor","mixedInto":[],"xtypes":{},"files":[{"href":"RowEditor.html#Ext-grid-RowEditor","filename":"RowEditor.js"}]}); \ No newline at end of file