Ext JS 4.0.7 Sencha Docs

Ext.AbstractComponent

Hierarchy

Ext.Base
Ext.AbstractComponent

Mixins

Requires

Subclasses

Uses

Files

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

An abstract base class which provides shared methods for Components across the Sencha product line.

Please refer to sub class's documentation

Available since: 4.0.0

Defined By

Config options

Ext.AbstractComponent
view source
: String/Object
A tag name or DomHelper spec used to create the Element which will encapsulate this Component. ...

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

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

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

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

Available since: Ext 2

Ext.AbstractComponent
view source
: Boolean/String/HTMLElement/Ext.Element
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 renderTo in the configuration, and rendering upon construction, this allows a Component to render itself upon first show. If floating is true, the value of this config is omited as if it is true.

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

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

This defaults to true for the Window class.

Defaults to: false

Available since: 4.0.0

Ext.AbstractComponent
view source
: Boolean
True to automatically show the component upon creation. ...

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

Defaults to: false

Available since: Ext 2

Ext.AbstractComponent
view source
: String
The base CSS class to apply to this components's element. ...

The base CSS class to apply to this components's element. This will also be prepended to elements within this component like Panel's body will get a class x-panel-body. This means that if you create a subclass of Panel, and you want it to get all the Panels styling for the element and the body, you leave the baseCls x-panel and use componentCls to add specific styling for this component.

Defaults to: 'x-component'

Available since: 4.0.0

Ext.AbstractComponent
view source
: Number/String
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 be a CSS style specification for each style, for example: '10 5 3 10'.

Available since: 4.0.0

Ext.AbstractComponent
view source
: Object[]
An array describing the child elements of the Component. ...

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

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

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

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

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

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

Available since: 4.0.5

Ext.AbstractComponent
view source
: String
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 for adding customized styles to the component or any of its children using standard CSS rules.

Defaults to: ''

Available since: Ext 1

Ext.AbstractComponent
view source
componentCls : String

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

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

Available since: 4.0.0

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

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

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

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

Available since: 4.0.0

Ext.AbstractComponent
view source
: String
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.

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

Notes:

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

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

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

Available since: Ext 3

Ext.AbstractComponent
view source
data : Object

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

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

Available since: Ext 3

Ext.AbstractComponent
view source
: Boolean
True to disable the component. ...

True to disable the component.

Defaults to: false

Available since: Ext 2

Ext.AbstractComponent
view source
: String
CSS class to add when the Component is disabled. ...

CSS class to add when the Component is disabled. Defaults to 'x-item-disabled'.

Defaults to: 'x-item-disabled'

Available since: 4.0.0

Ext.AbstractComponent
view source
: Boolean
Allows the component to be dragged. ...

Allows the component to be dragged.

Defaults to: false

Available since: 4.0.0

Ext.AbstractComponent
view source
: Boolean
Create the Component as a floating and use absolute positioning. ...

Create the Component as a floating and use absolute positioning.

The z-index of floating Components is handled by a ZIndexManager. If you simply render a floating Component into the DOM, it will be managed by the global WindowManager.

If you include a floating Component as a child item of a Container, then upon render, ExtJS will seek an ancestor floating Component to house a new ZIndexManager instance to manage its descendant floaters. If no floating ancestor can be found, the global WindowManager will be used.

When a floating Component which has a ZindexManager managing descendant floaters is destroyed, those descendant floaters will also be destroyed.

Defaults to: false

Available since: 4.0.0

Ext.AbstractComponent
view source
: Boolean
Specify as true to have the Component inject framing elements within the Component at render time to provide a graphi...

Specify as true to have the Component inject framing elements within the Component at render time to provide a graphical rounded frame around the Component content.

This is only necessary when running on outdated, or non standard-compliant browsers such as Microsoft's Internet Explorer prior to version 9 which do not support rounded corners natively.

The extra space taken up by this framing is available from the read only property frameSize.

Available since: 4.0.0

Ext.AbstractComponent
view source
height : Number

The height of this component in pixels.

The height of this component in pixels.

Available since: 4.0.0

Ext.AbstractComponent
view source
: Boolean
True to hide the component. ...

True to hide the component.

Defaults to: false

Available since: Ext 2

Ext.AbstractComponent
view source
: String
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:

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

Defaults to: 'display'

Available since: Ext 1

Ext.AbstractComponent
view source
: String/Object
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. The HTML content is added after the component is rendered, so the document will not contain this HTML at the time the render event is fired. This content is inserted into the body before any configured contentEl is appended.

Defaults to: ''

Available since: Ext 3

Ext.AbstractComponent
view source
: String
The unique id of this component instance. ...

The unique id of this component instance.

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

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

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

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

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

Defaults to an auto-assigned id.

Available since: Ext 1

Ext.AbstractComponent
view source
: String
An itemId can be used as an alternative way to get a reference to a component when no object reference is available. ...

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

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

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

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

Available since: Ext 3

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 should be a valid listeners config object as specified in the addListener example for attaching multiple handlers at once.

DOM events from Ext JS Components

While some Ext JS Component classes export selected DOM events (e.g. "click", "mouseover" etc), this is usually only 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 child element of a Component, we need to specify the element option to identify the Component property to add a DOM listener to:

new Ext.panel.Panel({
    width: 400,
    height: 200,
    dockedItems: [{
        xtype: 'toolbar'
    }],
    listeners: {
        click: {
            element: 'el', //bind to the underlying el property on the panel
            fn: function(){ console.log('click el'); }
        },
        dblclick: {
            element: 'body', //bind to the underlying body property on the panel
            fn: function(){ console.log('dblclick body'); }
        }
    }
});

Available since: 1.1.0

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

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

Available since: 4.0.0

Ext.AbstractComponent
view source
: Number/String
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 be a CSS style specification for each style, for example: '10 5 3 10'.

Available since: 4.0.0

Ext.AbstractComponent
view source
: Number
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.

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

Available since: 4.0.0

Ext.AbstractComponent
view source
: Number
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.

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

Available since: 4.0.0

Ext.AbstractComponent
view source
: Number
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.

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

Available since: 4.0.0

Ext.AbstractComponent
view source
: Number
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.

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

Available since: 4.0.0

Ext.AbstractComponent
view source
: String
An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and...

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

Defaults to: ''

Available since: Ext 2

Ext.AbstractComponent
view source
: Number/String
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 can be a CSS style specification for each style, for example: '10 5 3 10'.

Available since: 4.0.0

Ext.AbstractComponent
view source
: Object/Object[]
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 a valid plugin is that it contain an init method that accepts a reference of type Ext.Component. When a component is created, if any plugins are available, the component will call the init method on each plugin, passing a reference to itself. Each plugin can then call methods or respond to events on the component as needed to provide its functionality.

Available since: Ext 2

Ext.AbstractComponent
view source
: Object
The data used by renderTpl in addition to the following property values of the component: id ui uiCls baseCls compo...

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

  • id
  • ui
  • uiCls
  • baseCls
  • componentCls
  • frame

See renderSelectors and childEls for usage examples.

Available since: Ext JS 4.0.7

Ext.AbstractComponent
view source
: Object
An object containing properties specifying DomQuery selectors which identify child elements created by the render pro...

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

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

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

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

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

Available since: 4.0.0

Ext.AbstractComponent
view source
: String/HTMLElement/Ext.Element
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.

Notes:

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

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

See render also.

Available since: Ext 2

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

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

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

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

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

Available since: 4.0.0

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.

Defaults to: 100

Available since: 4.0.6

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

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

See stateful for an explanation of saving and restoring object state.

Available since: 4.0.0

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

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

See stateful for an explanation of saving and restoring state.

Available since: 4.0.0

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

A flag which causes the object to attempt to restore the state of internal properties from a saved state on startup. The object must have a stateId for state to be managed. Auto-generated ids are not guaranteed to be stable across page loads and cannot be relied upon to save and restore the same state for a object.

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

To set the state provider for the current page:

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

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

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

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

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

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

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

Defaults to: true

Available since: 4.0.0

Ext.AbstractComponent
view source
: String
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 Ext.Element.applyStyles.

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

Available since: Ext 1

Ext.AbstractComponent
view source
: String
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.

Defaults to: 'x-html'

Available since: 4.0.0

Ext.AbstractComponent
view source
: Boolean
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).

Defaults to: false

Available since: 4.0.0

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 conjunction with the data and tplWriteMode configurations.

Available since: Ext 3

Ext.AbstractComponent
view source
: String
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. See Ext.XTemplate.overwrite for information on default mode.

Defaults to: 'overwrite'

Available since: Ext 3

Ext.AbstractComponent
view source
: String/String[]
A set style for a component. ...

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

Defaults to: 'default'

Available since: 4.0.0

Ext.AbstractComponent
view source
: String[]private
An array of of classNames which are currently applied to this component ...

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

Defaults to: []

Available since: 4.0.0

Ext.AbstractComponent
view source
width : Number

The width of this component in pixels.

The width of this component in pixels.

Available since: 4.0.0

Ext.AbstractComponent
view source
: String
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 shortcut to the full componet name. For example, the component Ext.button.Button has an xtype of button.

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

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

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

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

// Implicit creation using xtype:
var panel = new Ext.Panel({
   ...
   items: [{
      xtype: 'button',
      text: 'OK'
   }]
};

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

Available since: Ext 2

Properties

Defined By

Instance Properties

Ext.AbstractComponent
view source
: Booleanprivate
...

Defaults to: true

Available since: 4.0.0

Available since: 4.0.0

...

Defaults to: /^((\w+-)|(ext-comp-))\d{4,}$/i

Available since: 4.0.0

Ext.AbstractComponent
view source
: Numberprivate
The number of component layout calls made on this object. ...

The number of component layout calls made on this object.

Defaults to: 0

Available since: 4.0.3

Ext.AbstractComponent
view source
: Boolean
Read-only property indicating whether or not the component can be dragged ...

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

Defaults to: false

Available since: 4.0.0

...

Defaults to: /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate|element|vertical|horizontal|freezeEvent)$/

Available since: 4.0.0

Ext.AbstractComponent
view source
: Stringprivate
...

Defaults to: Ext.baseCSSPrefix + 'frame'

Available since: 4.0.0

Ext.AbstractComponent
view source
: Objectprivate
...

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

Available since: 4.0.2

Ext.AbstractComponent
view source
: RegExpprivate
...

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

Available since: 4.0.5

Ext.AbstractComponent
view source
: Object
Read-only property indicating the width of any framing elements which were added within the encapsulating element to ...

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

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

Available since: 4.0.0

  • top : Number

    The width of the top framing element in pixels.

  • right : Number

    The width of the right framing element in pixels.

  • bottom : Number

    The width of the bottom framing element in pixels.

  • left : Number

    The width of the left framing element in pixels.

Ext.AbstractComponent
view source
: Arrayprivate
...

Defaults to: ['<table><tbody>', '<tpl if="top">', '<tr>', '<tpl if="left"><td id="{fgid}TL" class="{frameCls}-tl {baseCls}-tl {baseCls}-{ui}-tl<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-tl</tpl></tpl>" style="background-position: {tl}; padding-left:{frameWidth}px" role="presentation"></td></tpl>', '<td id="{fgid}TC" class="{frameCls}-tc {baseCls}-tc {baseCls}-{ui}-tc<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-tc</tpl></tpl>" style="background-position: {tc}; height: {frameWidth}px" role="presentation"></td>', '<tpl if="right"><td id="{fgid}TR" class="{frameCls}-tr {baseCls}-tr {baseCls}-{ui}-tr<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-tr</tpl></tpl>" style="background-position: {tr}; padding-left: {frameWidth}px" role="presentation"></td></tpl>', '</tr>', '</tpl>', '<tr>', '<tpl if="left"><td id="{fgid}ML" class="{frameCls}-ml {baseCls}-ml {baseCls}-{ui}-ml<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-ml</tpl></tpl>" style="background-position: {ml}; padding-left: {frameWidth}px" role="presentation"></td></tpl>', '<td id="{fgid}MC" class="{frameCls}-mc {baseCls}-mc {baseCls}-{ui}-mc<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-mc</tpl></tpl>" style="background-position: 0 0;" role="presentation"></td>', '<tpl if="right"><td id="{fgid}MR" class="{frameCls}-mr {baseCls}-mr {baseCls}-{ui}-mr<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-mr</tpl></tpl>" style="background-position: {mr}; padding-left: {frameWidth}px" role="presentation"></td></tpl>', '</tr>', '<tpl if="bottom">', '<tr>', '<tpl if="left"><td id="{fgid}BL" class="{frameCls}-bl {baseCls}-bl {baseCls}-{ui}-bl<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-bl</tpl></tpl>" style="background-position: {bl}; padding-left: {frameWidth}px" role="presentation"></td></tpl>', '<td id="{fgid}BC" class="{frameCls}-bc {baseCls}-bc {baseCls}-{ui}-bc<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-bc</tpl></tpl>" style="background-position: {bc}; height: {frameWidth}px" role="presentation"></td>', '<tpl if="right"><td id="{fgid}BR" class="{frameCls}-br {baseCls}-br {baseCls}-{ui}-br<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-br</tpl></tpl>" style="background-position: {br}; padding-left: {frameWidth}px" role="presentation"></td></tpl>', '</tr>', '</tpl>', '</tbody></table>']

Available since: 4.0.0

Ext.AbstractComponent
view source
: Arrayprivate
...

Defaults to: ['<tpl if="top">', '<tpl if="left"><div id="{fgid}TL" class="{frameCls}-tl {baseCls}-tl {baseCls}-{ui}-tl<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-tl</tpl></tpl>" style="background-position: {tl}; padding-left: {frameWidth}px" role="presentation"></tpl>', '<tpl if="right"><div id="{fgid}TR" class="{frameCls}-tr {baseCls}-tr {baseCls}-{ui}-tr<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-tr</tpl></tpl>" style="background-position: {tr}; padding-right: {frameWidth}px" role="presentation"></tpl>', '<div id="{fgid}TC" class="{frameCls}-tc {baseCls}-tc {baseCls}-{ui}-tc<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-tc</tpl></tpl>" style="background-position: {tc}; height: {frameWidth}px" role="presentation"></div>', '<tpl if="right"></div></tpl>', '<tpl if="left"></div></tpl>', '</tpl>', '<tpl if="left"><div id="{fgid}ML" class="{frameCls}-ml {baseCls}-ml {baseCls}-{ui}-ml<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-ml</tpl></tpl>" style="background-position: {ml}; padding-left: {frameWidth}px" role="presentation"></tpl>', '<tpl if="right"><div id="{fgid}MR" class="{frameCls}-mr {baseCls}-mr {baseCls}-{ui}-mr<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-mr</tpl></tpl>" style="background-position: {mr}; padding-right: {frameWidth}px" role="presentation"></tpl>', '<div id="{fgid}MC" class="{frameCls}-mc {baseCls}-mc {baseCls}-{ui}-mc<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-mc</tpl></tpl>" role="presentation"></div>', '<tpl if="right"></div></tpl>', '<tpl if="left"></div></tpl>', '<tpl if="bottom">', '<tpl if="left"><div id="{fgid}BL" class="{frameCls}-bl {baseCls}-bl {baseCls}-{ui}-bl<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-bl</tpl></tpl>" style="background-position: {bl}; padding-left: {frameWidth}px" role="presentation"></tpl>', '<tpl if="right"><div id="{fgid}BR" class="{frameCls}-br {baseCls}-br {baseCls}-{ui}-br<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-br</tpl></tpl>" style="background-position: {br}; padding-right: {frameWidth}px" role="presentation"></tpl>', '<div id="{fgid}BC" class="{frameCls}-bc {baseCls}-bc {baseCls}-{ui}-bc<tpl if="uiCls"><tpl for="uiCls"> {parent.baseCls}-{parent.ui}-{.}-bc</tpl></tpl>" style="background-position: {bc}; height: {frameWidth}px" role="presentation"></div>', '<tpl if="right"></div></tpl>', '<tpl if="left"></div></tpl>', '</tpl>']

Available since: 4.0.0

Ext.AbstractComponent
view source
: Booleanprivate
End Definitions ...

End Definitions

Defaults to: true

Available since: 4.0.0

...

Defaults to: true

Available since: 4.0.0

Ext.AbstractComponent
view source
: Booleanprivate
Flag set by the container layout to which this Component is added. ...

Flag set by the container layout to which this Component is added. If the layout manages this Component's height, it sets the value to 1. If it does NOT manage the height, it sets it to 2. If the layout MAY affect the height, but only if the owning Container has a fixed height, this is set to 0.

Available since: 4.0.2

Ext.AbstractComponent
view source
: Booleanprivate
Flag set by the container layout to which this Component is added. ...

Flag set by the container layout to which this Component is added. If the layout manages this Component's width, it sets the value to 1. If it does NOT manage the width, it sets it to 2. If the layout MAY affect the width, but only if the owning Container has a fixed width, this is set to 0.

Available since: 4.0.2

Ext.AbstractComponent
view source
: Boolean
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 that every component gets a mask when its disabled. Components like FieldContainer, FieldSet, Field, Button, Tab override this property to false since they want to implement custom disable logic.

Defaults to: true

Available since: 4.0.0

Ext.AbstractComponent
view source
: Booleanprivate
...

Defaults to: false

Available since: 4.0.0

Ext.AbstractComponent
view source
: Ext.Container
This Component's owner Container (is set automatically when this Component is added to a Container). ...

This Component's owner Container (is set automatically when this Component is added to a Container). Read-only.

Note: to access items within the Container see itemId.

Available since: Ext 2

Ext.AbstractComponent
view source
: Boolean
Read-only property indicating whether or not the component has been rendered. ...

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

Defaults to: false

Available since: Ext 1

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, this.self is scope-dependent and it's meant to be used for dynamic inheritance. See statics for a detailed comparison

Ext.define('My.Cat', {
    statics: {
        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'
    },

    constructor: function() {
        alert(this.self.speciesName); / dependent on 'this'

        return this;
    },

    clone: function() {
        return new this.self();
    }
});


Ext.define('My.SnowLeopard', {
    extend: 'My.Cat',
    statics: {
        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'
    }
});

var cat = new My.Cat();                     // alerts 'Cat'
var snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'

var clone = snowLeopard.clone();
alert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'

Available since: 4.0.0

Ext.AbstractComponent
view source
: RegExpprivate
...

Defaults to: /\s+/

Available since: 4.0.0

Ext.AbstractComponent
view source
: RegExpprivate
...

Defaults to: /^\s+|\s+$/g

Available since: 4.0.0

Ext.AbstractComponent
view source
: Numberprivate
...

Defaults to: 0

Available since: 4.0.0

Defined By

Static Properties

Ext.AbstractComponent
view source
: Numberprivatestatic
...

Defaults to: 1000

Available since: 4.0.0

Methods

Defined By

Instance Methods

Ext.AbstractComponent
view source
new( [config] ) : Ext.AbstractComponent
Creates new Component. ...

Creates new Component.

Available since: 4.0.0

Parameters

  • config : Object (optional)

    Config object.

Returns

Overrides: Ext.util.Observable.constructor

Ext.AbstractComponent
view source
( )
Adds each argument passed to this method to the childEls array. ...

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

Available since: 4.0.5

Ext.AbstractComponent
view source
( cls ) : Ext.Component
Adds a CSS class to the top level element representing this component. ...

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

Available since: Ext 2

Parameters

  • cls : String

    The CSS class name to add

Returns

Ext.AbstractComponent
view source
( cls ) : Ext.Component
Adds a CSS class to the top level element representing this component. ...

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

Available since: 4.0.0

Parameters

  • cls : String

    The CSS class name to add

Returns

Ext.AbstractComponent
view source
( cls, skip )
Adds a cls to the uiCls array, which will also call addUIClsToElement and adds to all elements of this component. ...

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

Available since: 4.0.0

Parameters

  • cls : String/String[]

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

  • skip : Object

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

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.

Available since: 1.1.0

Parameters

  • o : Object/String

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

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

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

    this.addEvents('storeloaded', 'storecleared');
    
...

Available since: 4.0.6

Parameters

Returns

Ext.AbstractComponent
view source
( eventName, fn, [scope], [options] )
Appends an event handler to this object. ...

Appends an event handler to this object.

Available since: 4.0.0

Parameters

  • eventName : String

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

  • fn : Function

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

  • scope : Object (optional)

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

  • options : Object (optional)

    An object containing handler configuration.

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

    This object may contain any of the following properties:

    • scope : Object

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

    • delay : Number

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

    • single : Boolean

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

    • buffer : Number

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

    • target : Observable

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

    • element : String

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

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

      new Ext.panel.Panel({
          title: 'The title',
          listeners: {
              click: this.handlePanelClick,
              element: 'body'
          }
      });
      

    Combining Options

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

    A delayed, one-time listener.

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

    Attaching multiple handlers in 1 call

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

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

    One can also specify options for each event handler separately:

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

Overrides: Ext.util.Observable.addListener

( item, ename, [fn], [scope], [opt] )
Adds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is destr...

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

Available since: 4.0.0

Parameters

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

    The item to which to add a listener/listeners.

  • ename : Object/String

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

  • fn : Function (optional)

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

  • scope : Object (optional)

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

  • opt : Object (optional)

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

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

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

Add events that will trigger the state to be saved.

Available since: 4.0.0

Parameters

  • events : String/String[]

    The event name or an array of event names.

Ext.AbstractComponent
view source
( ui )
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 than just the components element.

Available since: 4.0.0

Parameters

  • ui : String

    The UI to remove from the element

Ext.AbstractComponent
view source
( force )private
Method which adds a specified UI to the components element. ...

Method which adds a specified UI to the components element.

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( adjWidth, adjHeight, isSetSize, callingContainer )
Occurs after componentLayout is run. ...

Occurs after componentLayout is run.

Available since: 4.0.0

Parameters

  • adjWidth : Number

    The box-adjusted width that was set

  • adjHeight : Number

    The box-adjusted height that was set

  • isSetSize : Boolean

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

  • callingContainer : Ext.Component

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

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

process the passed fx configuration. ...
  • process the passed fx configuration.

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( config ) : Object
Perform custom animation on this object. ...

Perform custom animation on this object.

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

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

Properties include

  • from
    An object which specifies start values for the properties being animated. If not supplied, properties are animated from current settings. The actual properties which may be animated depend upon ths object being animated. See the sections below on Element and Component animation.
  • to
    An object which specifies end values for the properties being animated.
  • duration
    The duration in milliseconds for which the animation will run.
  • 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:
    • ease
    • easeIn
    • easeOut
    • easeInOut
    • backIn
    • backOut
    • elasticIn
    • elasticOut
    • bounceIn
    • bounceOut
  • keyframes
    This is an object which describes the state of animated properties at certain points along the timeline. it 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.
  • listeners
    This is a standard listeners configuration object which may be used to inject behaviour at either the beforeanimate event or the afteranimate event.

Animating an Element

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

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 will 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 directly animate certain properties of Components.

Animating a Component

When animating an Element, the following properties may be specified in from, to, and keyframe objects:
  • x
    The Component's page X position in pixels.
  • y
    The Component's page Y position in pixels
  • left
    The Component's left value in pixels.
  • top
    The Component's top value in pixels.
  • width
    The Component's width value in pixels.
  • width
    The Component's width value in pixels.
  • dynamic
    Specify as true to update the Component's layout (if it is a Container) at every frame of the animation. Use sparingly as laying out on every intermediate size change is an expensive operation.

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

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

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 Components is required, then configure the animation with dynamic: true and the two child items will maintain their proportions during the animation.

Available since: 4.0.0

Parameters

  • config : Object

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

Returns

Overrides: Ext.util.Animate.animate

Ext.AbstractComponent
view source
( )private
Sets references to elements inside the component. ...

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

Available since: 4.0.0

Applies the state to the object. ...

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

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( adjWidth, adjHeight, isSetSize, callingContainer )
Occurs before componentLayout is run. ...

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

Available since: 4.0.0

Parameters

  • adjWidth : Number

    The box-adjusted width that was set

  • adjHeight : Number

    The box-adjusted height that was set

  • isSetSize : Boolean

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

  • callingContainer : Ext.Component

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

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Call the original method that was previously overridden with override Ext.define('My.Cat', { constructor: functi...

Call the original method that was previously overridden with override

Ext.define('My.Cat', {
    constructor: function() {
        alert("I'm a cat!");

        return this;
    }
});

My.Cat.override({
    constructor: function() {
        alert("I'm going to be a cat!");

        var instance = this.callOverridden();

        alert("Meeeeoooowwww");

        return instance;
    }
});

var kitty = new My.Cat(); // alerts "I'm going to be a cat!"
                          // alerts "I'm a cat!"
                          // alerts "Meeeeoooowwww"

Available since: 4.0.0

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object

Returns

  • Object

    Returns the result after calling the overridden method

Call the parent's overridden method. ...

Call the parent's overridden method. For example:

Ext.define('My.own.A', {
    constructor: function(test) {
        alert(test);
    }
});

Ext.define('My.own.B', {
    extend: 'My.own.A',

    constructor: function(test) {
        alert(test);

        this.callParent([test + 1]);
    }
});

Ext.define('My.own.C', {
    extend: 'My.own.B',

    constructor: function() {
        alert("Going to call parent's overriden constructor...");

        this.callParent(arguments);
    }
});

var a = new My.own.A(1); // alerts '1'
var b = new My.own.B(1); // alerts '1', then alerts '2'
var c = new My.own.C(2); // alerts "Going to call parent's overriden constructor..."
                         // alerts '2', then alerts '3'

Available since: 4.0.0

Parameters

  • args : Array/Arguments

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

Returns

  • Object

    Returns the result from the superclass' method

Ext.AbstractComponent
view source
( )private
Remove any references to elements added via renderSelectors/childEls ...

Remove any references to elements added via renderSelectors/childEls

Available since: 4.0.6

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

Removes all listeners for this object including the managed listeners

Available since: 4.0.0

Removes all managed listeners for this object. ...

Removes all managed listeners for this object.

Available since: 4.0.0

Ext.AbstractComponent
view source
( plugin )private
...

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( )
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 appropriate instances.

Available since: 4.0.5

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

Continue to fire event.

Available since: Ext JS 4.0.7

Parameters

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

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

Available since: 4.0.0

Parameters

Returns

Ext.AbstractComponent
view source
( )
Destroys the Component. ...

Destroys the Component.

Available since: Ext 1

Overrides: Ext.state.Stateful.destroy

Ext.AbstractComponent
view source
( [silent] )
Disable the component. ...

Disable the component.

Available since: Ext 1

Parameters

  • silent : Boolean (optional)

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

    Defaults to: false

Ext.AbstractComponent
view source
( )
Handles autoRender. ...

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

Available since: 4.0.0

Ext.AbstractComponent
view source
( width, height, isSetSize, callingContainer ) : Ext.container.Container
This method needs to be called whenever you change something on this component that requires the Component's layout t...

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

Available since: 4.0.0

Parameters

Returns

Ext.AbstractComponent
view source
( [silent] )
Enable the component ...

Enable the component

Available since: Ext 1

Parameters

  • silent : Boolean (optional)

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

    Defaults to: false

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

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

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

Example:

Ext.override(Ext.form.field.Base, {
    //  Add functionality to Field's initComponent to enable the change event to bubble
    initComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {
        this.enableBubble('change');
    }),

    //  We know that we want Field's events to bubble directly to the FormPanel.
    getBubbleTarget : function() {
        if (!this.formPanel) {
            this.formPanel = this.findParentByType('form');
        }
        return this.formPanel;
    }
});

var myForm = new Ext.formPanel({
    title: 'User Details',
    items: [{
        ...
    }],
    listeners: {
        change: function() {
            // Title goes red if form has been modified.
            myForm.header.setStyle('color', 'red');
        }
    }
});

Available since: 3.4.0

Parameters

  • events : String/String[]

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

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

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

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

Available since: 4.0.0

Returns

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

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

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

Available since: 1.1.0

Parameters

  • eventName : String

    The name of the event to fire.

  • args : Object...

    Variable number of parameters are passed to handlers.

Returns

  • Boolean

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

Ext.AbstractComponent
view source
( )
Forces this component to redo its componentLayout. ...

Forces this component to redo its componentLayout.

Available since: 4.0.2

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.

Available since: 4.0.0

Returns

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Gets the bubbling parent for an Observable ...

Gets the bubbling parent for an Observable

Available since: Ext JS 4.0.7

Returns

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.

Available since: Ext 3

Returns

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( ) : Ext.core.Element
Retrieves the top level element representing this component. ...

Retrieves the top level element representing this component.

Available since: Ext 1

Returns

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( frameInfo )private
...

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( table )private
...

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( ) : Number
Gets the current height of the component's underlying element. ...

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

Available since: 4.0.0

Returns

Ext.AbstractComponent
view source
( ) : String
Retrieves the id of this component. ...

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

Available since: 4.0.0

Returns

Ext.AbstractComponent
view source
( position ) : HTMLElement
This function takes the position argument passed to onRender and returns a DOM element that you can use in the insert...

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

Available since: 4.0.0

Parameters

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

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

Returns

  • HTMLElement

    DOM element that you can use in the insertBefore

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( ) : Ext.ComponentLoader
Gets the Ext.ComponentLoader for this Component. ...

Gets the Ext.ComponentLoader for this Component.

Available since: 4.0.0

Returns

Ext.AbstractComponent
view source
( pluginId ) : Ext.AbstractPlugin
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.

Available since: 4.0.0

Parameters

Returns

Ext.AbstractComponent
view source
( ) : Object
Gets the current size of the component's underlying element. ...

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

Available since: 4.0.0

Returns

  • Object

    An object containing the element's size {width: (element width), height: (element height)}

Ext.AbstractComponent
view source
( ) : Object
The supplied default state gathering method for the AbstractComponent class. ...

The supplied default state gathering method for the AbstractComponent class.

This method returns dimension settings such as flex, anchor, width and height along with collapsed state.

Subclasses which implement more complex state should call the superclass's implementation, and apply their state to the result if this basic state is to be saved.

Note that Component state will only be saved if the Component has a stateId and there as a StateProvider configured for the document.

Available since: 4.0.0

Returns

Overrides: Ext.state.Stateful.getState

Gets the state id for this object. ...

Gets the state id for this object.

Available since: 4.0.0

Returns

  • String

    The state id, null if not found.

Ext.AbstractComponent
view source
( )private
This is used to determine where to insert the 'html', 'contentEl' and 'items' in this component. ...

This is used to determine where to insert the 'html', 'contentEl' and 'items' in this component.

Available since: 4.0.0

Ext.AbstractComponent
view source
( name )private
...

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( ) : Number
Gets the current width of the component's underlying element. ...

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

Available since: 4.0.0

Returns

Ext.AbstractComponent
view source
( ) : String
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 Ext.Component header.

If using your own subclasses, be aware that a Component must register its own xtype to participate in determination of inherited xtypes.

Example usage:

var t = new Ext.form.field.Text();
alert(t.getXTypes());  // alerts 'component/field/textfield'

Available since: Ext 2

Returns

  • String

    The xtype hierarchy string

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.

This method has been deprecated since 4.0

Replaced by getActiveAnimation

Available since: 4.0.0

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

Available since: 1.1.0

Parameters

  • eventName : String

    The name of the event to check for

Returns

  • Boolean

    True if the event is being listened for, else false

Ext.AbstractComponent
view source
( cls )
Checks if there is currently a specified uiCls ...

Checks if there is currently a specified uiCls

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( ) : String[]private
Creates an array of class names from the configurations to add to this Component's el on render. ...

Creates an array of class names from the configurations to add to this Component's el on render.

Private, but (possibly) used by ComponentQuery for selection by class name if Component is not rendered.

Available since: 4.0.0

Returns

  • String[]

    An array of class names with which the Component's element will be rendered.

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

( config ) : Objectchainableprotected
Initialize configuration for this class. ...

Initialize configuration for this class. a typical example:

Ext.define('My.awesome.Class', {
    // The default config
    config: {
        name: 'Awesome',
        isAwesome: true
    },

    constructor: function(config) {
        this.initConfig(config);

        return this;
    }
});

var awesome = new My.awesome.Class({
    name: 'Super Awesome'
});

alert(awesome.getName()); // 'Super Awesome'

Available since: 4.0.0

Parameters

Returns

  • Object

    mixins The mixin prototypes as key - value pairs

Ext.AbstractComponent
view source
( container ) : Ext.Elementprivate
Adds ctCls to container. ...

Adds ctCls to container.

Available since: 4.0.0

Parameters

Returns

Ext.AbstractComponent
view source
( )private
Initializes this components contents. ...

Initializes this components contents. It checks for the properties html, contentEl and tpl/data.

Available since: 4.0.0

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( plugin )private
...

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( ) : Objectprivate
Initialized the renderData to be used when rendering the renderTpl. ...

Initialized the renderData to be used when rendering the renderTpl.

Available since: 4.0.0

Returns

  • Object

    Object with keys and values that are going to be applied to the renderTpl

Ext.AbstractComponent
view source
( ) : Ext.XTemplateprivate
Initializes the renderTpl. ...

Initializes the renderTpl.

Available since: 4.0.0

Returns

Initializes the state of the object upon construction. ...

Initializes the state of the object upon construction.

Available since: 4.0.0

Initializes any state events for this object. ...

Initializes any state events for this object.

Available since: 4.0.0

Ext.AbstractComponent
view source
( ) : Stringprivate
Converts style definitions to String. ...

Converts style definitions to String.

Available since: 4.0.0

Returns

  • String

    A CSS style string with style, padding, margin and border.

Ext.AbstractComponent
view source
( selector ) : Boolean
Tests whether this Component matches the selector string. ...

Tests whether this Component matches the selector string.

Available since: 4.0.0

Parameters

  • selector : String

    The selector string to test against.

Returns

  • Boolean

    True if this Component matches the selector.

Ext.AbstractComponent
view source
( container ) : Boolean
Determines whether this component is the descendant of a particular container. ...

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

Available since: 4.0.0

Parameters

Returns

Ext.AbstractComponent
view source
( ) : Boolean
Method to determine whether this Component is currently disabled. ...

Method to determine whether this Component is currently disabled.

Available since: 4.0.0

Returns

  • Boolean

    the disabled state of this Component.

Ext.AbstractComponent
view source
( ) : Boolean
Method to determine whether this Component is draggable. ...

Method to determine whether this Component is draggable.

Available since: 4.0.0

Returns

  • Boolean

    the draggable state of this component.

Ext.AbstractComponent
view source
( ) : Boolean
Method to determine whether this Component is droppable. ...

Method to determine whether this Component is droppable.

Available since: 4.0.0

Returns

  • Boolean

    the droppable state of this component.

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.2

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.2

Ext.AbstractComponent
view source
( ) : Boolean
Method to determine whether this Component is floating. ...

Method to determine whether this Component is floating.

Available since: 4.0.0

Returns

  • Boolean

    the floating state of this component.

Ext.AbstractComponent
view source
( ) : Boolean
Method to determine whether this Component is currently set to hidden. ...

Method to determine whether this Component is currently set to hidden.

Available since: 4.0.0

Returns

  • Boolean

    the hidden state of this Component.

Ext.AbstractComponent
view source
( [deep] ) : Boolean
Returns true if this component is visible. ...

Returns true if this component is visible.

Available since: Ext 1

Parameters

  • deep : Boolean (optional)

    Pass true to interrogate the visibility status of all parent Containers to determine whether this Component is truly visible to the user.

    Generally, to determine whether a Component is hidden, the no argument form is needed. For example when creating dynamically laid out UIs in a hidden Container before showing them.

    Defaults to: false

Returns

  • Boolean

    True if this component is visible, false otherwise.

Ext.AbstractComponent
view source
( xtype, [shallow] ) : Boolean
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 from the xtype (default) or whether it is directly of the xtype specified (shallow = true).

If using your own subclasses, be aware that a Component must register its own xtype to participate in determination of inherited xtypes.

For a list of all available xtypes, see the Ext.Component header.

Example usage:

var t = new Ext.form.field.Text();
var isText = t.isXType('textfield');        // true
var isBoxSubclass = t.isXType('field');       // true, descended from Ext.form.field.Base
var isBoxInstance = t.isXType('field', true); // false, not a direct Ext.form.field.Base instance

Available since: Ext 2

Parameters

  • xtype : String

    The xtype to check for this Component

  • shallow : Boolean (optional)

    True to check whether this Component is directly of the specified xtype, false to check whether this Component is descended from the xtype.

    Defaults to: false

Returns

  • Boolean

    True if this component descends from the specified xtype, false otherwise.

( name, cls )private
Used internally by the mixins pre-processor ...

Used internally by the mixins pre-processor

Available since: 4.0.6

Parameters

( item, ename, [fn], [scope], [opt] )
Shorthand for addManagedListener. ...

Shorthand for addManagedListener.

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

Available since: 4.0.2

Parameters

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

    The item to which to add a listener/listeners.

  • ename : Object/String

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

  • fn : Function (optional)

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

  • scope : Object (optional)

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

  • opt : Object (optional)

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

( item, ename, [fn], [scope] )
Shorthand for removeManagedListener. ...

Shorthand for removeManagedListener.

Removes listeners that were added by the mon method.

Available since: 4.0.2

Parameters

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

    The item from which to remove a listener/listeners.

  • ename : Object/String

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

  • fn : Function (optional)

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

  • scope : Object (optional)

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

Ext.AbstractComponent
view source
( [selector] ) : Ext.Component
Returns the next node in the Component tree in tree traversal order. ...

Returns the next node in the Component tree in tree traversal order.

Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will walk the tree to attempt to find a match. Contrast with nextSibling.

Available since: 4.0.0

Parameters

Returns

  • Ext.Component

    The next node (or the next node which matches the selector). Returns null if there is no matching node.

Ext.AbstractComponent
view source
( [selector] ) : Ext.Component
Returns the next sibling of this Component. ...

Returns the next sibling of this Component.

Optionally selects the next sibling which matches the passed ComponentQuery selector.

May also be refered to as next()

Note that this is limited to siblings, and if no siblings of the item match, null is returned. Contrast with nextNode

Available since: 4.0.0

Parameters

Returns

  • Ext.Component

    The next sibling (or the next sibling which matches the selector). Returns null if there is no matching sibling.

( eventName, fn, [scope], [options] )
Shorthand for addListener. ...

Shorthand for addListener.

Appends an event handler to this object.

Available since: 1.1.0

Parameters

  • eventName : String

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

  • fn : Function

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

  • scope : Object (optional)

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

  • options : Object (optional)

    An object containing handler configuration.

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

    This object may contain any of the following properties:

    • scope : Object

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

    • delay : Number

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

    • single : Boolean

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

    • buffer : Number

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

    • target : Observable

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

    • element : String

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

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

      new Ext.panel.Panel({
          title: 'The title',
          listeners: {
              click: this.handlePanelClick,
              element: 'body'
          }
      });
      

    Combining Options

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

    A delayed, one-time listener.

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

    Attaching multiple handlers in 1 call

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

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

    One can also specify options for each event handler separately:

    myGridPanel.on({
        cellClick: {fn: this.onCellClick, scope: this, single: true},
        mouseover: {fn: panel.onMouseOver, scope: panel}
    });
    
Ext.AbstractComponent
view source
( container, pos )private
Method to manage awareness of when components are added to their respective Container, firing an added event. ...

Method to manage awareness of when components are added to their respective Container, firing an added event. References are established at add time rather than at render time.

Available since: Ext 3

Parameters

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( x, y )private
Called after the component is moved, this method is empty by default but can be implemented by any subclass that need...

Called after the component is moved, this method is empty by default but can be implemented by any subclass that needs to perform custom logic after a move occurs.

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( )private
Method to manage awareness of when components are removed from their respective Container, firing an removed event. ...

Method to manage awareness of when components are removed from their respective Container, firing an removed event. References are properly cleaned up after removing a component from its owning container.

Available since: Ext 3

Ext.AbstractComponent
view source
( container, position )private
...

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

This method is called when any of the stateEvents are fired. ...

This method is called when any of the stateEvents are fired.

Available since: 4.0.0

( name, value )private
...

Available since: 4.0.6

Parameters

( name, fn )private
...

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( [selector] ) : Ext.Component
Returns the previous node in the Component tree in tree traversal order. ...

Returns the previous node in the Component tree in tree traversal order.

Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will walk the tree in reverse order to attempt to find a match. Contrast with previousSibling.

Available since: 4.0.0

Parameters

Returns

  • Ext.Component

    The previous node (or the previous node which matches the selector). Returns null if there is no matching node.

Ext.AbstractComponent
view source
( [selector] ) : Ext.Component
Returns the previous sibling of this Component. ...

Returns the previous sibling of this Component.

Optionally selects the previous sibling which matches the passed ComponentQuery selector.

May also be refered to as prev()

Note that this is limited to siblings, and if no siblings of the item match, null is returned. Contrast with previousNode

Available since: 4.0.0

Parameters

Returns

  • Ext.Component

    The previous sibling (or the previous sibling which matches the selector). Returns null if there is no matching sibling.

...

Available since: 1.1.0

...

Available since: 4.0.0

Ext.AbstractComponent
view source
( cmp )private
Called by Component#doAutoRender Register a Container configured floating: true with this Component's ZIndexManager. ...

Called by Component#doAutoRender

Register a Container configured floating: true with this Component's ZIndexManager.

Components added in ths way will not participate in any layout, but will be rendered upon first show in the way that Windows are.

Available since: 4.0.5

Parameters

Relays selected events from the specified Observable as if the events were fired by this. ...

Relays selected events from the specified Observable as if the events were fired by this.

Available since: 2.3.0

Parameters

  • origin : Object

    The Observable whose events this object is to relay.

  • events : String[]

    Array of event names to relay.

  • prefix : String
Ext.AbstractComponent
view source
( testFn )
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 with a entry in childEls and if the test function return true, that entry is removed. If false, that entry is kept.

Available since: 4.0.5

Parameters

Ext.AbstractComponent
view source
( )private
...

Available since: Ext 2

Ext.AbstractComponent
view source
( className ) : Ext.Component
Removes a CSS class from the top level element representing this component. ...

Removes a CSS class from the top level element representing this component.

Available since: 4.0.0

Parameters

Returns

Ext.AbstractComponent
view source
( cls )
Removes a cls to the uiCls array, which will also call removeUIClsFromElement and removes it from all elements of thi...

Removes a cls to the uiCls array, which will also call removeUIClsFromElement and removes it from all elements of this component.

Available since: 4.0.0

Parameters

  • cls : String/String[]

    A string or an array of strings to remove to the uiCls

Removes an event handler. ...

Removes an event handler.

Available since: 1.1.0

Parameters

  • eventName : String

    The type of event the handler was associated with.

  • fn : Function

    The handler to remove. This must be a reference to the function passed into the addListener call.

  • scope : Object (optional)

    The scope originally specified for the handler. It must be the same as the scope argument specified in the original call to addListener or the listener will not be removed.

Removes listeners that were added by the mon method. ...

Removes listeners that were added by the mon method.

Available since: 4.0.0

Parameters

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

    The item from which to remove a listener/listeners.

  • ename : Object/String

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

  • fn : Function (optional)

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

  • scope : Object (optional)

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

Ext.AbstractComponent
view source
( isClear, managedListener )private
inherit docs Remove a single managed listener item ...

inherit docs

Remove a single managed listener item

Available since: 4.0.1

Parameters

  • isClear : Boolean

    True if this is being called during a clear

  • managedListener : Object

    The managed listener item See removeManagedListener for other args

Overrides: Ext.util.Observable.removeManagedListenerItem

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Ext.AbstractComponent
view source
( ui )
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 will be: this.baseCls + '-' + ui

Available since: 4.0.0

Parameters

  • ui : String

    The UI to add to the element

Ext.AbstractComponent
view source
( )private
Method which removes a specified UI from the components element. ...

Method which removes a specified UI from the components element.

Available since: 4.0.0

Ext.AbstractComponent
view source
( container, position )private
...

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.3

Resumes firing events (see suspendEvents). ...

Resumes firing events (see suspendEvents).

If events were suspended using the queueSuspended parameter, then all events fired during event suspension will be sent to any listeners now.

Available since: 2.3.0

( propName, state, [stateName] ) : Boolean
Conditionally saves a single property from this object to the given state object. ...

Conditionally saves a single property from this object to the given state object. The idea is to only save state which has changed from the initial state so that current software settings do not override future software settings. Only those values that are user-changed state should be saved.

Available since: 4.0.4

Parameters

  • propName : String

    The name of the property to save.

  • state : Object

    The state object in to which to save the property.

  • stateName : String (optional)

    The name to use for the property in state.

Returns

  • Boolean

    True if the property was saved, false if not.

...

Available since: 4.0.4

Parameters

Saves the state of the object to the persistence store. ...

Saves the state of the object to the persistence store.

Available since: 4.0.0

Ensures that all effects queued after sequenceFx is called on this object are run in sequence. ...

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

Available since: 4.0.0

Returns

Ext.AbstractComponent
view source
( width, height, callingContainer )private
...

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( layout )private
...

Available since: 4.0.0

Parameters

( config ) : Ext.Basechainableprivate
...

Available since: 4.0.0

Parameters

Returns

Ext.AbstractComponent
view source
( disabled )
Enable or disable the component. ...

Enable or disable the component.

Available since: 4.0.0

Parameters

  • disabled : Boolean

    True to disable.

Ext.AbstractComponent
view source
( dock, [layoutParent] ) : Ext.Component
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 of the dockedItems collection of a parent that has a DockLayout (note that any Panel has a DockLayout by default)

Available since: 4.0.0

Parameters

  • dock : Object

    The dock position.

  • layoutParent : Boolean (optional)

    True to re-layout parent.

    Defaults to: false

Returns

Ext.AbstractComponent
view source
( height ) : Ext.Component
Sets the height of the component. ...

Sets the height of the component. This method fires the resize event.

Available since: 4.0.0

Parameters

  • height : Number

    The new height to set. This may be one of:

    • A Number specifying the new height in the Element's Ext.Element.defaultUnits (by default, pixels).
    • A String used to set the CSS height style.
    • undefined to leave the height unchanged.

Returns

Ext.AbstractComponent
view source
( load, [targetEl] ) : Ext.LoadMask
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.

Available since: 4.0.0

Parameters

  • load : Boolean/Object/String

    True to show the default LoadMask, a config object that will be passed to the LoadMask constructor, or a message String to show. False to hide the current LoadMask.

  • targetEl : Boolean (optional)

    True to mask the targetEl of this Component instead of the this.el. For example, setting this to true on a Panel will cause only the body to be masked.

    Defaults to: false

Returns

  • Ext.LoadMask

    The LoadMask instance that has just been shown.

Ext.AbstractComponent
view source
( left, top ) : Ext.Component
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 method fires the move event.

Available since: 4.0.0

Parameters

Returns

Ext.AbstractComponent
view source
( width, height ) : Ext.Component
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 either width and height as separate arguments, or you can pass a size object like {width:10, height:20}.

Available since: 4.0.0

Parameters

  • width : Number/String/Object

    The new width to set. This may be one of:

    • A Number specifying the new width in the Element's Ext.Element.defaultUnits (by default, pixels).
    • A String used to set the CSS width style.
    • A size object in the format {width: widthValue, height: heightValue}.
    • undefined to leave the width unchanged.
  • height : Number/String

    The new height to set (not required if a size object is passed as the first arg). This may be one of:

    • A Number specifying the new height in the Element's Ext.Element.defaultUnits (by default, pixels).
    • A String used to set the CSS height style. Animation may not be used.
    • undefined to leave the height unchanged.

Returns

Ext.AbstractComponent
view source
( ui )
Sets the UI for the component. ...

Sets the UI for the component. This will remove any existing UIs on the component. It will also loop through any uiCls set on the component and rename them so they include the new UI

Available since: 4.0.0

Parameters

  • ui : String

    The new UI for the component

Ext.AbstractComponent
view source
( visible ) : Ext.Component
Convenience function to hide or show this component by boolean. ...

Convenience function to hide or show this component by boolean.

Available since: Ext 1

Parameters

  • visible : Boolean

    True to show, false to hide

Returns

Ext.AbstractComponent
view source
( width ) : Ext.Component
Sets the width of the component. ...

Sets the width of the component. This method fires the resize event.

Available since: 4.0.0

Parameters

  • width : Number

    The new width to setThis may be one of:

Returns

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

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, this.statics() is scope-independent and it always returns the class from which it was called, regardless of what this points to during run-time

Ext.define('My.Cat', {
    statics: {
        totalCreated: 0,
        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'
    },

    constructor: function() {
        var statics = this.statics();

        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to
                                        // equivalent to: My.Cat.speciesName

        alert(this.self.speciesName);   // dependent on 'this'

        statics.totalCreated++;

        return this;
    },

    clone: function() {
        var cloned = new this.self;                      // dependent on 'this'

        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName

        return cloned;
    }
});


Ext.define('My.SnowLeopard', {
    extend: 'My.Cat',

    statics: {
        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'
    },

    constructor: function() {
        this.callParent();
    }
});

var cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'

var snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'

var clone = snowLeopard.clone();
alert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'
alert(clone.groupName);                 // alerts 'Cat'

alert(My.Cat.totalCreated);             // alerts 3

Available since: 4.0.0

Returns

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

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

Available since: 4.0.0

Returns

...

This method has been deprecated

4.0 Replaced by stopAnimation Stops any running effects and clears this object's internal effects queue if it contains any additional effects that haven't started yet.

Available since: 4.0.0

Returns

Suspends the firing of all events. ...

Suspends the firing of all events. (see resumeEvents)

Available since: 2.3.0

Parameters

  • queueSuspended : Boolean

    Pass as true to queue up suspended events to be fired after the resumeEvents call instead of discarding all suspended events.

Ensures that all effects queued after syncFx is called on this object are run concurrently. ...

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

Available since: 4.0.0

Returns

( eventName, fn, [scope] )
Shorthand for removeListener. ...

Shorthand for removeListener.

Removes an event handler.

Available since: 1.1.0

Parameters

  • eventName : String

    The type of event the handler was associated with.

  • fn : Function

    The handler to remove. This must be a reference to the function passed into the addListener call.

  • scope : Object (optional)

    The scope originally specified for the handler. It must be the same as the scope argument specified in the original call to addListener or the listener will not be removed.

Ext.AbstractComponent
view source
( [selector] ) : Ext.container.Container
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.

Example:

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

Available since: 4.0.0

Parameters

  • selector : String (optional)

    The simple selector to test.

Returns

Ext.AbstractComponent
view source
( htmlOrData, [loadScripts], [callback] )
Update the content area of a component. ...

Update the content area of a component.

Available since: Ext 3

Parameters

  • htmlOrData : String/Object

    If this component has been configured with a template via the tpl config then it will use this argument as data to populate the template. If this component was not configured with a template, the components content area will be updated via Ext.Element update

  • loadScripts : Boolean (optional)

    Only legitimate when using the html configuration.

    Defaults to: false

  • callback : Function (optional)

    Only legitimate when using the html configuration. Callback to execute when scripts have finished loading

Ext.AbstractComponent
view source
( )private
...

Available since: 4.0.0

Defined By

Static Methods

( members ) : Ext.Basechainablestatic
Add / override static properties of this class. ...

Add / override static properties of this class.

Ext.define('My.cool.Class', {
    ...
});

My.cool.Class.addStatics({
    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'
    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };
    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };
});

Available since: 4.0.2

Parameters

Returns

( fromClass, members ) : Ext.Basechainablestatic
Borrow another class' members to the prototype of this class. ...

Borrow another class' members to the prototype of this class.

Ext.define('Bank', {
    money: '$$$',
    printMoney: function() {
        alert('$$$$$$$');
    }
});

Ext.define('Thief', {
    ...
});

Thief.borrow(Bank, ['money', 'printMoney']);

var steve = new Thief();

alert(steve.money); // alerts '$$$'
steve.printMoney(); // alerts '$$$$$$$'

Available since: 4.0.2

Parameters

  • fromClass : Ext.Base

    The class to borrow members from

  • members : String/String[]

    The names of the members to borrow

Returns

Create a new instance of this Class. ...

Create a new instance of this Class.

Ext.define('My.cool.Class', {
    ...
});

My.cool.Class.create({
    someConfig: true
});

All parameters are passed to the constructor of the class.

Available since: 4.0.2

Returns

( alias, origin )static
Create aliases for existing prototype methods. ...

Create aliases for existing prototype methods. Example:

Ext.define('My.cool.Class', {
    method1: function() { ... },
    method2: function() { ... }
});

var test = new My.cool.Class();

My.cool.Class.createAlias({
    method3: 'method1',
    method4: 'method2'
});

test.method3(); // test.method1()

My.cool.Class.createAlias('method5', 'method3');

test.method5(); // test.method3() -> test.method1()

Available since: 4.0.2

Parameters

Get the current class' name in string format. ...

Get the current class' name in string format.

Ext.define('My.cool.Class', {
    constructor: function() {
        alert(this.self.getName()); // alerts 'My.cool.Class'
    }
});

My.cool.Class.getName(); // 'My.cool.Class'

Available since: 4.0.4

Returns

Add methods / properties to the prototype of this class. ...

Add methods / properties to the prototype of this class.

Ext.define('My.awesome.Cat', {
    constructor: function() {
        ...
    }
});

 My.awesome.Cat.implement({
     meow: function() {
        alert('Meowww...');
     }
 });

 var kitty = new My.awesome.Cat;
 kitty.meow();

Available since: 4.0.2

Parameters

( members ) : Ext.Basechainablestatic
Override prototype members of this class. ...

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

Ext.define('My.Cat', {
    constructor: function() {
        alert("I'm a cat!");

        return this;
    }
});

My.Cat.override({
    constructor: function() {
        alert("I'm going to be a cat!");

        var instance = this.callOverridden();

        alert("Meeeeoooowwww");

        return instance;
    }
});

var kitty = new My.Cat(); // alerts "I'm going to be a cat!"
                          // alerts "I'm a cat!"
                          // alerts "Meeeeoooowwww"

Available since: 4.0.2

Parameters

Returns

Defined By

Events

Ext.AbstractComponent
view source
( this, eOpts )
Fires after a Component has been visually activated. ...

Fires after a Component has been visually activated.

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( this, container, pos, eOpts )
Fires after a Component had been added to a Container. ...

Fires after a Component had been added to a Container.

Available since: Ext 3

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires after the component rendering is finished. ...

Fires after the component rendering is finished.

The afterrender event is fired after this Component has been rendered, been postprocesed by any afterRender method defined for the Component.

Available since: Ext 3

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires before a Component has been visually activated. ...

Fires before a Component has been visually activated. Returning false from an event listener can prevent the activate from occurring.

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires before a Component has been visually deactivated. ...

Fires before a Component has been visually deactivated. Returning false from an event listener can prevent the deactivate from occurring.

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires before the component is destroyed. ...

Fires before the component is destroyed. Return false from an event handler to stop the destroy.

Available since: Ext 1

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
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 handler to stop the hide.

Available since: Ext 1

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires before the component is rendered. ...

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

Available since: Ext 1

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
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 handler to stop the show.

Available since: Ext 1

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.

Available since: 4.0.0

Parameters

  • this : Ext.state.Stateful
  • state : Object

    The hash of state values returned from the StateProvider. If this event is not vetoed, then the state object is passed to applyState. By default, that simply copies property values into this object. The method maybe overriden to provide custom state restoration.

  • eOpts : Object

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

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.

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires after a Component has been visually deactivated. ...

Fires after a Component has been visually deactivated.

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires after the component is destroyed. ...

Fires after the component is destroyed.

Available since: Ext 1

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires after the component is disabled. ...

Fires after the component is disabled.

Available since: Ext 1

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires after the component is enabled. ...

Fires after the component is enabled.

Available since: Ext 1

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires after the component is hidden. ...

Fires after the component is hidden. Fires after the component is hidden when calling the hide method.

Available since: Ext 1

Parameters

Ext.AbstractComponent
view source
( this, x, y, eOpts )
Fires after the component is moved. ...

Fires after the component is moved.

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( this, ownerCt, eOpts )
Fires when a component is removed from an Ext.container.Container ...

Fires when a component is removed from an Ext.container.Container

Available since: Ext 3

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires after the component markup is rendered. ...

Fires after the component markup is rendered.

Available since: Ext 1

Parameters

Ext.AbstractComponent
view source
( this, adjWidth, adjHeight, eOpts )
Fires after the component is resized. ...

Fires after the component is resized.

Available since: 4.0.0

Parameters

Ext.AbstractComponent
view source
( this, eOpts )
Fires after the component is shown when calling the show method. ...

Fires after the component is shown when calling the show method.

Available since: Ext 1

Parameters

Fires after the state of the object is restored. ...

Fires after the state of the object is restored.

Available since: 4.0.0

Parameters

  • this : Ext.state.Stateful
  • state : Object

    The hash of state values returned from the StateProvider. This is passed to applyState. By default, that simply copies property values into this object. The method maybe overriden to provide custom state restoration.

  • eOpts : Object

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

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.

Available since: 4.0.0

Parameters