Ext.data.JsonP.Ext_tab_Tab({"alternateClassNames":[],"aliases":{"widget":["tab"]},"enum":null,"parentMixins":["Ext.Queryable","Ext.state.Stateful","Ext.util.Animate","Ext.util.ElementContainer","Ext.util.Floating","Ext.util.Observable","Ext.util.Positionable","Ext.util.Renderable"],"tagname":"class","subclasses":[],"extends":"Ext.button.Button","uses":[],"html":"

Hierarchy

Inherited mixins

Requires

Files

Represents a single Tab in a TabPanel. A Tab is simply a slightly customized Button,\nstyled to look like a tab. Tabs are optionally closable, and can also be disabled. 99% of the time you will not\nneed to create Tabs manually as the framework does so automatically when you use a TabPanel

\n
Defined By

Config options

The CSS class to be applied to a Tab when it is active. ...

The CSS class to be applied to a Tab when it is active.\nProviding your own CSS for this class enables you to customize the active state.

\n

Defaults to: 'active'

False to not allow a pressed Button to be depressed. ...

False to not allow a pressed Button to be depressed. Only valid when enableToggle is true.

\n

Defaults to: true

The side of the Button box to render the arrow if the button has an associated menu. ...

The side of the Button box to render the arrow if the button has an associated menu. Two\nvalues are allowed:

\n\n
    \n
  • 'right'
  • \n
  • 'bottom'
  • \n
\n\n

Defaults to: 'right'

The className used for the inner arrow element if the button has a menu. ...

The className used for the inner arrow element if the button has a menu.

\n

Defaults to: 'arrow'

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

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

\n\n

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

\n\n

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

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

Available since: 2.3.0

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

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

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

The above is the same as:

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

Don't use it together with loader config.

\n
\n

This cfg has been deprecated since 4.1.1

\n

Use loader config instead.

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

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

\n\n

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

\n\n

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

\n

Defaults to: false

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

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

\n

Defaults to: false

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

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

\n

Defaults to: false

Available since: 2.3.0

\n
The base CSS class to add to all buttons. ...

The base CSS class to add to all buttons.

\n

Defaults to: Ext.baseCSSPrefix + 'tab'

Overrides: Ext.button.Button.baseCls

An object literal of parameters to pass to the url when the href property is specified.

\n

An object literal of parameters to pass to the url when the href property is specified.

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

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

\n\n

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

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

To turn off the border, use border: false.

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

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

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

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

\n\n

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

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

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

\n
The DOM event that will fire the handler of the button. ...

The DOM event that will fire the handler of the button. This can be any valid event name (dblclick, contextmenu).

\n

Defaults to: 'click'

True to make the Tab start closable (the close icon will be visible). ...

True to make the Tab start closable (the close icon will be visible).

\n

Defaults to: true

The CSS class which is added to the tab when it is closable ...

The CSS class which is added to the tab when it is closable

\n

Defaults to: 'closable'

The accessible text label for the close button link; only used when closable = true. ...

The accessible text label for the close button link; only used when closable = true.

\n

Defaults to: 'Close Tab'

A CSS class string to apply to the button's main element.

\n

A CSS class string to apply to the button's main element.

\n

Overrides: Ext.AbstractComponent.cls

Defines the column width inside column layout. ...

Defines the column width inside column layout.

\n\n

Can be specified as a number or as a percentage.

\n

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

\n

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

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

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

\n\n

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

\n\n

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

\n

Defaults to: 'button'

Overrides: Ext.AbstractComponent.componentLayout

True to constrain this Components within its containing element, false to allow it to fall outside of its containing\n...

True to constrain this Components within its containing element, false to allow it to fall outside of its containing\nelement. By default this Component will be rendered to document.body. To render and constrain this Component within\nanother element specify renderTo.

\n

Defaults to: false

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

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

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

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

\n\n

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

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

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

\n\n

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

\n\n

Notes:

\n\n

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

\n\n

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

\n\n

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

\n

Available since: 3.4.0

\n

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

\n

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

\n

Available since: 3.4.0

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

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

\n

Defaults to: "tl-bl?"

Whether or not to destroy any associated menu when this button is destroyed. ...

Whether or not to destroy any associated menu when this button is destroyed. The menu\nwill be destroyed unless this is explicitly set to false.

\n
True to start disabled. ...

True to start disabled.

\n

Defaults to: false

Overrides: Ext.AbstractComponent.disabled

The CSS class to be applied to a Tab when it is disabled. ...

The CSS class to be applied to a Tab when it is disabled.

\n

Defaults to: 'x-tab-disabled'

Overrides: Ext.AbstractComponent.disabledCls

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

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

\n\n

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

\n\n

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

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

Defaults to: false

Overrides: Ext.AbstractComponent.draggable

True to enable pressed/not pressed toggling. ...

True to enable pressed/not pressed toggling. If a toggleGroup is specified, this\noption will be set to true.

\n

Defaults to: false

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

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

\n\n

Only in browsers that support position:fixed

\n\n

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

\n

Defaults to: false

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

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

\n\n

Components such as Windows and Menus are floating by default.

\n\n

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

\n\n

Floating Components as child items of a Container

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n

Defaults to: false

Overrides: Ext.AbstractComponent.floating

The CSS class to add to a button when it is in the focussed state. ...

The CSS class to add to a button when it is in the focussed state.

\n

Defaults to: 'focus'

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

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

\n

Defaults to: true

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

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

\n

Defaults to: false

Specify as true to have the Component inject framing elements within the Component at render time to provide a\ngraphi...

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

\n\n

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

\n\n

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

\n

Defaults to: true

Overrides: Ext.AbstractComponent.frame

A numeric unicode character code to use as the icon for this button. ...

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

\n
False to disable visual cues on mouseover, mouseout and mousedown. ...

False to disable visual cues on mouseover, mouseout and mousedown.

\n

Defaults to: true

A function called when the button is clicked (can be used instead of click event). ...

A function called when the button is clicked (can be used instead of click event).

\n

Parameters

The height of this component in pixels.

\n

The height of this component in pixels.

\n
True to start hidden. ...

True to start hidden.

\n

Defaults to: false

Overrides: Ext.AbstractComponent.hidden

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

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

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

Defaults to: 'display'

Available since: 1.1.0

\n
The URL to open when the button is clicked. ...

The URL to open when the button is clicked. Specifying this config causes the Button to be\nrendered with the specified URL as the href attribute of its <a> Element.

\n\n

This is better than specifying a click handler of

\n\n
function() { window.location = \"http://www.sencha.com\" }\n
\n\n

because the UI will provide meaningful hints to the user as to what to expect upon clicking\nthe button, and will also allow the user to open in a new tab or window, bookmark or drag the URL, or directly save\nthe URL stream to disk.

\n\n

See also the hrefTarget config.

\n
The target attribute to use for the underlying anchor. ...

The target attribute to use for the underlying anchor. Only used if the href\nproperty is specified.

\n

Defaults to: "_blank"

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

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

\n

Defaults to: ''

Available since: 3.4.0

\n

The path to an image to display in the button.

\n

The path to an image to display in the button.

\n
The side of the Button box to render the icon. ...

The side of the Button box to render the icon. Four values are allowed:

\n\n
    \n
  • 'top'
  • \n
  • 'right'
  • \n
  • 'bottom'
  • \n
  • 'left'
  • \n
\n\n

Defaults to: 'left'

A css class which sets a background image to be used as the icon for this button.

\n

A css class which sets a background image to be used as the icon for this button.

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

The unique id of this component instance.

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

Defaults to an auto-assigned id.

\n

Available since: 1.1.0

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

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

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

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

\n\n

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

\n

Available since: 3.4.0

\n
A config object containing one or more event handlers to be added to this object during initialization. ...

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

\n\n

DOM events from Ext JS Components

\n\n

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

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

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

\n\n
Ext.create('Ext.Component', {\n    loader: {\n        url: 'content.html',\n        autoLoad: true\n    },\n    renderTo: Ext.getBody()\n});\n
\n
Specifies the margin for this component. ...

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

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

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

\n\n

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

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

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

\n\n

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

\n

Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob.

\n

Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob.

\n
The CSS class to add to a button when it's menu is active. ...

The CSS class to add to a button when it's menu is active.

\n

Defaults to: 'menu-active'

The position to align the menu to (see Ext.util.Positionable.alignTo for more details). ...

The position to align the menu to (see Ext.util.Positionable.alignTo for more details).

\n

Defaults to: 'tl-bl?'

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

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

\n\n

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

\n
The minimum width for this button (used to give a set of buttons a common width). ...

The minimum width for this button (used to give a set of buttons a common width).\nSee also Ext.panel.Panel.minButtonWidth.

\n

Overrides: Ext.AbstractComponent.minWidth

The CSS class to add to a button when it is in the over (hovered) state. ...

The CSS class to add to a button when it is in the over (hovered) state.

\n

Defaults to: 'over'

Overrides: Ext.AbstractComponent.overCls

If used in a Toolbar, the text to be used if this item is shown in the overflow menu. ...

If used in a Toolbar, the text to be used if this item is shown in the overflow menu.\nSee also Ext.toolbar.Item.overflowText.

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

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

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

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

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

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

\n
An object literal of parameters to pass to the url when the href property is specified. ...

An object literal of parameters to pass to the url when the href property is specified. Any params\noverride baseParams. New params can be set using the setParams method.

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

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

\n\n

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

\n\n

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

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

By using config object with ptype:

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

Or with just a ptype:

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

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

\n

Available since: 2.3.0

\n
True to start pressed (only if enableToggle = true) ...

True to start pressed (only if enableToggle = true)

\n

Defaults to: false

The CSS class to add to a button when it is in the pressed state. ...

The CSS class to add to a button when it is in the pressed state.

\n

Defaults to: 'pressed'

True to prevent the default action when the clickEvent is processed. ...

True to prevent the default action when the clickEvent is processed.

\n

Defaults to: true

: \"north\"/\"south\"/\"east\"/\"west\"/\"center\"
Defines the region inside border layout. ...

Defines the region inside border layout.

\n\n

Possible values:

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

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

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

See renderSelectors and childEls for usage examples.

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

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

\n\n

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

\n\n

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

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

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

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

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

\n\n

Notes:

\n\n

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

\n\n

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

\n\n

See also: render.

\n

Available since: 2.3.0

\n
We have to keep \"unselectable\" attribute on all elements because it's not inheritable. ...

We have to keep \"unselectable\" attribute on all elements because it's not inheritable.\nWithout it, clicking anywhere on a button disrupts current selection and cursor position\nin HtmlEditor.

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n

Defaults to: ['<span id="{id}-btnWrap" class="{baseCls}-wrap', '<tpl if="splitCls"> {splitCls}</tpl>', '{childElCls}" unselectable="on">', '<span id="{id}-btnEl" class="{baseCls}-button">', '<span id="{id}-btnInnerEl" class="{baseCls}-inner {innerCls}', '{childElCls}" unselectable="on">', '{text}', '</span>', '<span role="img" id="{id}-btnIconEl" class="{baseCls}-icon-el {iconCls}', '{childElCls} {glyphCls}" unselectable="on" style="', '<tpl if="iconUrl">background-image:url({iconUrl});</tpl>', '<tpl if="glyph && glyphFontFamily">font-family:{glyphFontFamily};</tpl>">', '<tpl if="glyph">&#{glyph};</tpl><tpl if="iconCls || iconUrl">&#160;</tpl>', '</span>', '</span>', '</span>', '<tpl if="closable">', '<span id="{id}-closeEl" class="{baseCls}-close-btn" title="{closeText}" tabIndex="0"></span>', '</tpl>']

Overrides: Ext.AbstractComponent.renderTpl

True to repeat fire the click event while the mouse is down. ...

True to repeat fire the click event while the mouse is down. This can also be a\nClickRepeater config object.

\n

Defaults to: false

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

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

\n\n

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

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

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

\n

Defaults to: 'all'

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

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

\n\n

Defined in override Ext.rtl.AbstractComponent.

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

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

\n

Defaults to: 100

Ext.tab.Tab
view source
: \"small\"/\"medium\"/\"large\"
The size of the Button. ...

The size of the Button. Three values are allowed:

\n\n
    \n
  • 'small' - Results in the button element being 16px high.
  • \n
  • 'medium' - Results in the button element being 24px high.
  • \n
  • 'large' - Results in the button element being 32px high.
  • \n
\n\n

Defaults to: false

Overrides: Ext.button.Button.scale

The scope (this reference) in which the handler and toggleHandler is executed. ...

The scope (this reference) in which the handler and toggleHandler is executed.\nDefaults to this Button.

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

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

\n

Defaults to: 'sides'

Number of pixels to offset the shadow.

\n

Number of pixels to offset the shadow.

\n
True to force an attached menu with no items to be shown when clicking\nthis button. ...

True to force an attached menu with no items to be shown when clicking\nthis button. By default, the menu will not show if it is empty.

\n

Defaults to: false

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

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

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

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

\n

Defaults to: 3

Overrides: Ext.AbstractComponent.shrinkWrap

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

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

\n\n\n

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

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

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

\n\n

See stateful for an explanation of saving and restoring state.

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

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

\n\n

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

\n\n

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

\n\n

To set the state provider for the current page:

\n\n

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

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

}));

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n

Defaults to: false

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

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

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

Available since: 1.1.0

\n
Set a DOM tabIndex for this button. ...

Set a DOM tabIndex for this button.

\n

Defaults to: 0

The button text to be used as innerHTML (html tags are accepted).

\n

The button text to be used as innerHTML (html tags are accepted).

\n
The text alignment for this button (center, left, right). ...

The text alignment for this button (center, left, right).

\n

Defaults to: 'center'

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

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

\n

Defaults to: true

The group this toggle button is a member of (only 1 per group can be pressed). ...

The group this toggle button is a member of (only 1 per group can be pressed). If a toggleGroup\nis specified, the enableToggle configuration will automatically be set to true.

\n
Function called when a Button with enableToggle set to true is clicked. ...

Function called when a Button with enableToggle set to true is clicked.

\n

Parameters

The tooltip for the button - can be a string to be used as innerHTML (html tags are accepted) or\nQuickTips config obj...

The tooltip for the button - can be a string to be used as innerHTML (html tags are accepted) or\nQuickTips config object.

\n
The type of tooltip to use. ...

The type of tooltip to use. Either 'qtip' for QuickTips or 'title' for title attribute.

\n

Defaults to: 'qtip'

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

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

\n

Available since: 3.4.0

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

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

\n

Defaults to: 'overwrite'

Available since: 3.4.0

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

A UI style for a component.

\n

Defaults to: 'default'

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

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

\n

Defaults to: []

The width of this component in pixels.

\n

The width of this component in pixels.

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

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

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

But by using xtype, the above becomes:

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

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

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

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

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

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

\n\n

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

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

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

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

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

\n

Available since: 2.3.0

\n

Properties

Defined By

Instance Properties

...
\n

Defaults to: 'Ext.Base'

...
\n

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

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

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

\n

Defaults to: false

...
\n

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

A reusable object used by getTriggerRegion to avoid excessive object creation. ...

A reusable object used by getTriggerRegion to avoid excessive object creation.

\n

Defaults to: {}

Ext.tab.Tab
view source
: Booleanreadonly
Indicates that this tab is currently active. ...

Indicates that this tab is currently active. This is NOT a public configuration.

\n

Defaults to: false

An array of allowed scales. ...

An array of allowed scales.

\n

Defaults to: ['small', 'medium', 'large']

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

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

\n

Defaults to: false

private ...

private

\n

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

...
\n

Defaults to: []

True if the tab is currently closable

\n

True if the tab is currently closable

\n
Ext.tab.Tab
view source
: Stringprivate
...
\n

Defaults to: Ext.baseCSSPrefix + 'tab-close-btn-over'

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

The number of component layout calls made on this object.

\n

Defaults to: 0

...
\n

Defaults to: {}

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

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

\n

Defaults to: 'padding'

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

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

\n
...
\n

Defaults to: 'autocomponent'

True if this button is disabled. ...

True if this button is disabled.

\n

Defaults to: false

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

Indicates whether or not the component can be dragged.

\n

Defaults to: false

Initial suspended call count. ...

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

\n

Defaults to: 0

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

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

\n\n

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

\n\n

These differences are abstracted away by the up method.

\n\n

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

\n\n

See floating and zIndexManager

\n
...
\n

Defaults to: Ext.baseCSSPrefix + 'frame'

...
\n

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

...
\n

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

...
\n

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

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

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

\n

Defaults to: {}

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

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

\n\n

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

\n
  • top : Number (optional)

    The width of the top framing element in pixels.

    \n

    Defaults to: 0

  • right : Number (optional)

    The width of the right framing element in pixels.

    \n

    Defaults to: 0

  • bottom : Number (optional)

    The width of the bottom framing element in pixels.

    \n

    Defaults to: 0

  • left : Number (optional)

    The width of the left framing element in pixels.

    \n

    Defaults to: 0

  • width : Number (optional)

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

    \n

    Defaults to: 0

  • height : Number (optional)

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

    \n

    Defaults to: 0

...
\n

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

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

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

\n\n

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

\n\n
 if (this.hasListeners.foo) {\n     this.fireEvent('foo', this, arg1);\n }\n
\n
True if this button is hidden. ...

True if this button is hidden.

\n

Defaults to: false

...
\n

Defaults to: []

...
\n

Defaults to: {}

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

\n

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

\n
...
\n

Defaults to: true

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

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

\n

Defaults to: true

...
\n

Defaults to: true

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

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

\n

Defaults to: true

...
\n

Defaults to: true

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

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

\n

Defaults to: true

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

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

\n

Defaults to: true

The Menu object associated with this Button when configured with the menu config\noption.

\n

The Menu object associated with this Button when configured with the menu config\noption.

\n
...
\n

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

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

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

\n\n

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

\n\n

These differences are abstracted away by the up method.

\n\n

Note: to access items within the Container see itemId.

\n

Available since: 2.3.0

\n
Ext.tab.Tab
view source
: Stringprivate
...
\n

Defaults to: 'top'

True if this button is pressed (only if enableToggle = true). ...

True if this button is pressed (only if enableToggle = true).

\n

Defaults to: false

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

Indicates whether or not the component has been rendered.

\n

Defaults to: false

Available since: 1.1.0

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

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

\n\n

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

\n\n

This object has the following properties:

\n
  • x : Boolean

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

    \n
  • y : Boolean

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

    \n
  • both : Boolean

    true if this Component is scrollable both horizontally and vertically.

    \n
  • overflowX : String

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

    \n
  • overflowY : String

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

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

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

\n\n
Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); // dependent on 'this'\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n
\n
A Template used to create the Button's DOM structure. ...

A Template used to create the Button's DOM structure.

\n\n

Instances, or subclasses which need a different DOM structure may provide a different template layout in\nconjunction with an implementation of getTemplateArgs.

\n
Only present for floating Components after they have been rendered. ...

Only present for floating Components after they have been rendered.

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

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

\n\n

See floating and zIndexParent

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

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

\n\n

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

\n\n

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

\n\n

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

\n\n

See floating and zIndexManager

\n
Defined By

Static Properties

...
\n

Defaults to: []

Methods

Defined By

Instance Methods

Creates new Component. ...

Creates new Component.

\n

Parameters

  • config : Ext.Element/String/Object

    The configuration options may be specified as either:

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

Returns

Overrides: Ext.AbstractComponent.constructor

Ext.tab.Tab
view source
( supressEvent )private
...
\n

Parameters

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

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

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

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

\n
\n

This method has been deprecated since 4.1

\n

Use addCls instead.

\n\n
\n

Available since: 2.3.0

\n

Parameters

Returns

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

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

\n

Parameters

Returns

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

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

\n

Parameters

  • classes : String/String[]

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

    \n
  • skip : Object

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

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

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

\n

Parameters

  • eventNames : Object/String...

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

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

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

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

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

\n\n

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

\n\n

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

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

Appends an event handler to this object. For example:

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

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

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

One can also specify options for each event handler separately:

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

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

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

Parameters

  • eventName : String/Object

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

    \n
  • fn : Function (optional)

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

    \n
  • scope : Object (optional)

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

    \n
  • options : Object (optional)

    An object containing handler configuration.

    \n\n

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

    \n\n

    This object may contain any of the following properties:

    \n
    • scope : Object

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

      \n
    • delay : Number

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

      \n
    • single : Boolean

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

      \n
    • buffer : Number

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

      \n
    • target : Ext.util.Observable

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

      \n
    • element : String

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

      \n\n

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

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

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

      \n

      Defaults to: false

    • priority : Number (optional)

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

      \n\n

      Combining Options

      \n\n

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

      \n\n

      A delayed, one-time listener.

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

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n

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

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

    And when those listeners need to be removed:

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

    or

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

Overrides: Ext.util.Observable.addListener

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

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

\n

Parameters

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

    The item to which to add a listener/listeners.

    \n\n
  • ename : Object/String

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

    \n\n
  • fn : Function (optional)

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

    \n\n
  • scope : Object (optional)

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

    \n\n
  • options : Object (optional)

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

    \n\n

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n\n\n\n

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

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

    And when those listeners need to be removed:

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

    or

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

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

\n

Parameters

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

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

\n

Parameters

  • state : Object

    The state object.

    \n
  • propName : String

    The name of the property on this object to save.

    \n
  • value : String (optional)

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

    \n

Returns

  • Boolean

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

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

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

\n

Parameters

  • events : String/String[]

    The event name or an array of event names.

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

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

\n

Parameters

  • ui : String

    The UI to remove from the element.

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

Method which adds a specified UI to the components element.

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

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

\n

Parameters

...
\n

Parameters

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

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

\n
\n

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

\n
\n

Parameters

  • width : Number

    The width that was set

    \n\n
  • height : Number

    The height that was set

    \n\n
  • oldWidth : Number/undefined

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

    \n\n
  • oldHeight : Number/undefined

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

    \n\n

Overrides: Ext.AbstractComponent.afterComponentLayout

...
\n

Parameters

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

Invoked after the Component has been hidden.

\n\n

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

\n
\n

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

\n
\n

Parameters

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

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

\n
\n

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

\n
\n

Overrides: Ext.util.Renderable.afterRender

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

Template method called after a Component has been positioned.

\n
\n

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

\n
\n

Parameters

Overrides: Ext.AbstractComponent.afterSetPosition

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

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

\n\n

Gets passed the same parameters as show.

\n
\n

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

\n
\n

Parameters

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

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

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

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

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

Example Usage:

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

Parameters

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

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

    \n
  • position : String (optional)

    The position to align to

    \n

    Defaults to: "tl-bl?"

  • offsets : Number[] (optional)

    Offset the positioning by [x, y]

    \n
  • animate : Boolean/Object (optional)

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

    \n

Returns

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

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

\n

Parameters

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

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

    \n
  • position : String (optional)

    The position to align to

    \n

    Defaults to: "tl-bl?"

  • offsets : Number[] (optional)

    Offset the positioning by [x, y]

    \n
  • animate : Boolean/Object (optional)

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

    \n
  • monitorScroll : Boolean/Number (optional)

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

    \n

    Defaults to: 50

  • callback : Function (optional)

    The function to call after the animation finishes

    \n

Returns

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

Parameters

Performs custom animation on this object. ...

Performs custom animation on this object.

\n\n

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

\n\n

Animating a Component

\n\n

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

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

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

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

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

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

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

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

  • \n
\n\n\n

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

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

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

\n

Parameters

Returns

Overrides: Ext.util.Animate.animate

Sets references to elements inside the component. ...

Sets references to elements inside the component.

\n

Parameters

Sets references to elements inside the component. ...

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

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

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

\n

Parameters

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

Template method to do any pre-blur processing.

\n

Parameters

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

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

\n
\n

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

\n
\n

Parameters

  • adjWidth : Number

    The box-adjusted width that was set.

    \n
  • adjHeight : Number

    The box-adjusted height that was set.

    \n
Invoked before the Component is destroyed. ...

Invoked before the Component is destroyed.

\n
\n

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

\n
\n

Overrides: Ext.AbstractComponent.beforeDestroy

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

Template method to do any pre-focus processing.

\n

Parameters

Occurs before componentLayout is run. ...

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

\n
\n

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

\n
\n

Overrides: Ext.AbstractComponent.beforeLayout

Ext.tab.Tab
view source
( )private
Template method called before a Component is positioned. ...

Template method called before a Component is positioned.

\n\n

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

\n

Parameters

Overrides: Ext.AbstractComponent.beforeSetPosition

Invoked before the Component is shown. ...

Invoked before the Component is shown.

\n
\n

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

\n
\n
...
\n

Returns

( fn, [scope], [args] ) : Ext.Componentchainable
Bubbles up the component/container heirarchy, calling the specified function with each component. ...

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

\n

Parameters

  • fn : Function

    The function to call

    \n
  • scope : Object (optional)

    The scope of the function. Defaults to current node.

    \n
  • args : Array (optional)

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

    \n

Returns

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

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

\n

Parameters

  • anchor : String (optional)

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

    \n

    Defaults to: 'tl'

  • extraX : Number (optional)

    value to be added to the x coordinate

    \n
  • extraY : Number (optional)

    value to be added to the y coordinate

    \n
  • size : Object (optional)

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

    \n

Returns

  • Number[]

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

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

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

\n\n

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

\n\n

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

\n\n

An alternative constraint may be passed.

\n

Parameters

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

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

    \n
  • proposedPosition : Number[] (optional)

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

    \n
  • local : Boolean (optional)

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

    \n
  • proposedSize : Number[] (optional)

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

    \n

Returns

  • Number[]

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

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

Call the original method that was previously overridden with override

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

This method has been deprecated

\n

as of 4.1. Use callParent instead.

\n\n
\n

Parameters

  • args : Array/Arguments

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

    \n

Returns

  • Object

    Returns the result of calling the overridden method

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

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

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

This can be used with an override as follows:

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

This also works with static methods.

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

Lastly, it also works with overridden static methods.

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

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

\n

Parameters

  • args : Array/Arguments

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

    \n

Returns

  • Object

    Returns the result of calling the parent method

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

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

\n\n

Consider:

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

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

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

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

\n

Parameters

  • args : Array/Arguments

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

    \n

Returns

  • Object

    Returns the result of calling the superclass method

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

Cancel any deferred focus on this component

\n
...
\n

Parameters

Center this Component in its container. ...

Center this Component in its container.

\n

Returns

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

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

\n

Parameters

Returns

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

Removes all listeners for this object including the managed listeners

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

Removes all managed listeners for this object.

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

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

\n

Parameters

  • overrides : Object

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

    \n

Returns

...
\n

Parameters

  • ptype : String/Object

    string or config object containing a ptype property.

    \n\n

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

    \n\n

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

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

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

\n\n

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

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

Continue to fire event.

\n

Parameters

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

Defined in override Ext.rtl.AbstractComponent.

\n

Parameters

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

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

\n

Parameters

  • newName : String

    The name under which to refire the passed parameters.

    \n
  • beginEnd : Array (optional)

    The caller can specify on which indices to slice.

    \n

Returns

Ext.tab.Tab
view source
( supressEvent )private
...
\n

Parameters

Checks if the icon/iconCls changed from being empty to having a value, or having a value to being empty. ...

Checks if the icon/iconCls changed from being empty to having a value, or having a value to being empty.

\n

Parameters

  • old : String

    The old icon/iconCls

    \n
  • current : String

    The current icon/iconCls

    \n

Returns

  • Boolean

    True if the icon state changed

    \n
Ext.tab.Tab
view source
( [silent] )
inherit docs\n\nDisable the component. ...

inherit docs

\n\n

Disable the component.

\n

Available since: 1.1.0

\n

Parameters

  • silent : Boolean (optional)

    Passing true will suppress the disable event from being fired.

    \n\n

    Defaults to: false

Overrides: Ext.button.Button.disable

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

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

\n\n

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

\n

Parameters

Handles autoRender. ...

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

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

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

\n

Returns

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

Moves this floating Component into a constrain region.

\n\n

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

\n\n

An alternative constraint may be passed.

\n

Parameters

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

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

    \n
...
\n

Parameters

...
\n

Parameters

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

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

\n

Parameters

Returns

Ext.tab.Tab
view source
( [silent] )
inherit docs\n\nEnable the component ...

inherit docs

\n\n

Enable the component

\n

Available since: 1.1.0

\n

Parameters

  • silent : Boolean (optional)

    Passing true will suppress the enable event from being fired.

    \n\n

    Defaults to: false

Overrides: Ext.button.Button.enable

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

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

\n\n

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

\n\n

Example:

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

Parameters

  • eventNames : String/String[]

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

    \n
Ensures that this component is attached to document.body. ...

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

\n

Parameters

  • runLayout : Boolean (optional)

    True to run the component's layout.

    \n

    Defaults to: false

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

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

\n\n

See also the up method.

\n

Parameters

  • fn : Function

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

    \n

Returns

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

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

\n\n

See also the up method.

\n

Parameters

  • xtype : String/Ext.Class

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

    \n

Returns

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

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

\n

Parameters

  • ptype : String

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

    \n

Returns

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

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

\n

Parameters

  • containerIdx : Number

    The index into the Container items of this Component.

    \n
Ext.tab.Tab
view source
( )private
Fires the close event on the tab. ...

Fires the close event on the tab.

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

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

\n\n

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

\n

Parameters

  • eventName : String

    The name of the event to fire.

    \n
  • args : Object...

    Variable number of parameters are passed to handlers.

    \n

Returns

  • Boolean

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

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

Fires the specified event with the passed parameter list.

\n\n

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

\n

Parameters

  • eventName : String

    The name of the event to fire.

    \n
  • args : Object[]

    An array of parameters which are passed to handlers.

    \n

Returns

  • Boolean

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

    \n
...
\n

Parameters

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

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

\n\n

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

\n\n

TODO: merge this functionality with Ext.globalEvents

\n

Parameters

...
\n

Parameters

( [selectText], [delay], [callback], [scope] ) : Ext.Component
Try to focus this component. ...

Try to focus this component.

\n

Parameters

  • selectText : Boolean (optional)

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

    \n
  • delay : Boolean/Number (optional)

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

    \n
  • callback : Function (optional)

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

    \n
  • scope : Function (optional)

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

    \n

Returns

  • Ext.Component

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

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

Forces this component to redo its componentLayout.

\n
\n

This method has been deprecated since 4.1.0

\n

Use updateLayout instead.

\n\n
\n
inherit docs ...

inherit docs

\n

Overrides: Ext.Component.getActionEl

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

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

\n

Returns

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

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

\n

Parameters

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

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

    \n
  • position : String (optional)

    The position to align to

    \n

    Defaults to: "tl-bl?"

  • offsets : Number[] (optional)

    Offset the positioning by [x, y]

    \n

Returns

private ...

private

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

\n\n

Begin Positionable methods

\n\n
\n\n

Overridden in Ext.rtl.AbstractComponent.

\n\n

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

\n

Parameters

  • el : Ext.dom.Element

    The element

    \n
  • anchor : String (optional)

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

    \n

    Defaults to: 'tl'

  • local : Boolean (optional)

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

    \n
  • size : Object (optional)

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

    \n

Returns

  • Number[]

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

    \n

Overrides: Ext.util.Positionable.getAnchorToXY

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

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

\n

Parameters

  • anchor : String (optional)

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

    \n

    Defaults to: 'tl'

  • local : Boolean (optional)

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

    \n
  • size : Object (optional)

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

    \n

Returns

  • Number[]

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

    \n
...
\n

Parameters

Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n\n

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

\n

Returns

  • Object

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

    \n

Overrides: Ext.util.Positionable.getBorderPadding

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

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

\n

Parameters

  • contentBox : Boolean (optional)

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

    \n
  • local : Boolean (optional)

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

    \n

Returns

  • Object

    box An object in the format:

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

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

    \n
...
\n

Parameters

Gets the bubbling parent for an Observable ...

Gets the bubbling parent for an Observable

\n

Returns

Implements an upward event bubbling policy. ...

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

\n\n

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

\n

Overrides: Ext.AbstractComponent.getBubbleTarget

...
\n

Parameters

( [constrainTo], [proposedPosition], [proposedSize] ) : Number[]/Boolean
Returns the [X, Y] vector by which this Positionable's element must be translated to make a best\nattempt to constrain...

Returns the [X, Y] vector by which this Positionable's element must be translated to make a best\nattempt to constrain within the passed constraint. Returns false if the element\ndoes not need to be moved.

\n\n

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

\n\n

The constraint may either be an existing element into which the element is to be\nconstrained, or a Region into which this element is to be\nconstrained.

\n\n

By default, any extra shadow around the element is not included in the constrain calculations - the edges\nof the element are used as the element bounds. To constrain the shadow within the constrain region, set the\nconstrainShadow property on this element to true.

\n

Parameters

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

    The\nPositionable, HTMLElement, element id, or Region into which the element is to be\nconstrained.

    \n
  • proposedPosition : Number[] (optional)

    A proposed [X, Y] position to test for validity\nand to produce a vector for instead of using the element's current position

    \n
  • proposedSize : Number[] (optional)

    A proposed [width, height] size to constrain\ninstead of using the element's current size

    \n

Returns

  • Number[]/Boolean

    If the element needs to be translated, an [X, Y]\nvector by which this element must be translated. Otherwise, false.

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

Retrieves the top level element representing this component.

\n

Available since: 1.1.0

\n

Returns

Overrides: Ext.AbstractComponent.getEl

inherit docs\n\nReturns the focus holder element associated with this Component. ...

inherit docs

\n\n

Returns the focus holder element associated with this Component. At the Component base class level, this function returns undefined.

\n\n

Subclasses which use embedded focusable elements (such as Window, Field and Button) should override this\nfor use by the focus method.

\n\n

Containers which need to participate in the FocusManager's navigation and Container focusing scheme also\nneed to return a focusEl, although focus is only listened for in this case if the FocusManager is enabled.

\n

Overrides: Ext.AbstractComponent.getFocusEl

On render, reads an encoded style attribute, \"filter\" from the style of this Component's element. ...

On render, reads an encoded style attribute, \"filter\" from the style of this Component's element.\nThis information is memoized based upon the CSS class name of this Component's element.\nBecause child Components are rendered as textual HTML as part of the topmost Container, a dummy div is inserted\ninto the document to receive the document element's CSS class name, and therefore style attributes.

\n
...
\n

Parameters

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

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

\n

Returns

A component's hierarchyState is used to keep track of aspects of a component's\nstate that affect its descendants hier...

A component's hierarchyState is used to keep track of aspects of a component's\nstate that affect its descendants hierarchically like \"collapsed\" and \"hidden\".\nFor example, if this.hierarchyState.hidden == true, it means that either this\ncomponent, or one of its ancestors is hidden.

\n\n

Hierarchical state management is implemented by chaining each component's\nhierarchyState property to its parent container's hierarchyState property via the\nprototype. The result is such that if a component's hierarchyState does not have\nit's own property, it inherits the property from the nearest ancestor that does.

\n\n

To set a hierarchical \"hidden\" value:

\n\n
this.getHierarchyState().hidden = true;\n
\n\n

It is important to remember when unsetting hierarchyState properties to delete\nthem instead of just setting them to a falsy value. This ensures that the\nhierarchyState returns to a state of inheriting the value instead of overriding it\nTo unset the hierarchical \"hidden\" value:

\n\n
delete this.getHierarchyState().hidden;\n
\n\n

IMPORTANT! ALWAYS access hierarchyState using this method, not by accessing\nthis.hierarchyState directly. The hierarchyState property does not exist until\nthe first time getHierarchyState() is called. At that point getHierarchyState()\nwalks up the component tree to establish the hierarchyState prototype chain.\nAdditionally the hierarchyState property should NOT be relied upon even after\nthe initial call to getHierarchyState() because it is possible for the\nhierarchyState to be invalidated. Invalidation typically happens when a component\nis moved to a new container. In such a case the hierarchy state remains invalid\nuntil the next time getHierarchyState() is called on the component or one of its\ndescendants.

\n

Parameters

If there is a configured href for this Button, returns the href with parameters appended. ...

If there is a configured href for this Button, returns the href with parameters appended.

\n

Returns

Retrieves the id of this component. ...

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

\n

Returns

Overrides: Ext.AbstractComponent.getId

Returns the initial configuration passed to constructor when instantiating\nthis class. ...

Returns the initial configuration passed to constructor when instantiating\nthis class.

\n

Parameters

  • name : String (optional)

    Name of the config option to return.

    \n

Returns

  • Object/Mixed

    The full config object or a single config value\nwhen name parameter specified.

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

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

\n

Parameters

Returns

  • HTMLElement

    DOM element that you can use in the insertBefore

    \n
Returns the value of itemId assigned to this component, or when that\nis not set, returns the value of id. ...

Returns the value of itemId assigned to this component, or when that\nis not set, returns the value of id.

\n

Returns

Gets the Ext.ComponentLoader for this Component. ...

Gets the Ext.ComponentLoader for this Component.

\n

Returns

Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n\n

Returns the x coordinate of this element reletive to its offsetParent.

\n

Returns

  • Number

    The local x coordinate

    \n

Overrides: Ext.util.Positionable.getLocalX

Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n\n

Returns the x and y coordinates of this element relative to its offsetParent.

\n

Returns

  • Number[]

    The local XY position of the element

    \n

Overrides: Ext.util.Positionable.getLocalXY

Returns the y coordinate of this element reletive to its offsetParent. ...

Returns the y coordinate of this element reletive to its offsetParent.

\n

Returns

  • Number

    The local y coordinate

    \n

Overrides: Ext.util.Positionable.getLocalY

Returns the offsets of this element from the passed element. ...

Returns the offsets of this element from the passed element. The element must both\nbe part of the DOM tree and not have display:none to have page coordinates.

\n

Parameters

Returns

  • Number[]

    The XY page offsets (e.g. [100, -200])

    \n
Include margins ...

Include margins

\n
Get an el for overflowing, defaults to the target el ...

Get an el for overflowing, defaults to the target el

\n
Returns the CSS style object which will set the Component's scroll styles. ...

Returns the CSS style object which will set the Component's scroll styles. This must be applied\nto the target element.

\n
Returns the owning container if that container uses border layout. ...

Returns the owning container if that container uses border layout. Otherwise\nthis method returns null.

\n\n

Defined in override Ext.layout.container.border.Region.

\n

Returns

Returns the owning border (Ext.layout.container.Border) instance if there is\none. ...

Returns the owning border (Ext.layout.container.Border) instance if there is\none. Otherwise this method returns null.

\n\n

Defined in override Ext.layout.container.border.Region.

\n

Returns

Retrieves a plugin from this component's collection by its pluginId. ...

Retrieves a plugin from this component's collection by its pluginId.

\n

Parameters

Returns

Gets the current XY position of the component's underlying element. ...

Gets the current XY position of the component's underlying element.

\n

Parameters

  • local : Boolean (optional)

    If true the element's left and top are returned instead of page XY.

    \n

    Defaults to: false

Returns

  • Number[]

    The XY position of the element (e.g., [100, 200])

    \n
Deprecate 5.0 ...

Deprecate 5.0

\n
...
\n

Parameters

Overrides: Ext.Queryable.getRefItems

Used by ComponentQuery, and the up method to find the\nowning Component in the linkage hierarchy. ...

Used by ComponentQuery, and the up method to find the\nowning Component in the linkage hierarchy.

\n\n

By default this returns the Container which contains this Component.

\n\n

This may be overriden by Component authors who implement ownership hierarchies which are not\nbased upon ownerCt, such as BoundLists being owned by Fields or Menus being owned by Buttons.

\n
Returns a region object that defines the area of this element. ...

Returns a region object that defines the area of this element.

\n

Returns

  • Ext.util.Region

    A Region containing \"top, left, bottom, right\" properties.

    \n
Deprecate 5.0 ...

Deprecate 5.0

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

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

\n

Returns

  • Object

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

    \n
Returns an object that describes how this component's width and height are managed. ...

Returns an object that describes how this component's width and height are managed.\nAll of these objects are shared and should not be modified.

\n

Parameters

Returns

The supplied default state gathering method for the AbstractComponent class. ...

The supplied default state gathering method for the AbstractComponent class.

\n\n

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

\n\n

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

\n\n

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

\n

Returns

Overrides: Ext.state.Stateful.getState

Gets the state id for this object. ...

Gets the state id for this object.

\n

Returns

  • String

    The 'stateId' or the implicit 'id' specified by component configuration.

    \n
Returns an offscreen div with the same class name as the element this is being rendered. ...

Returns an offscreen div with the same class name as the element this is being rendered.\nThis is because child item rendering takes place in a detached div which, being not\npart of the document, has no styling.

\n

Parameters

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

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

\n
Ext.tab.Tab
view source
( ) : Objectprotected
This method returns an object which provides substitution parameters for the XTemplate used to\ncreate this Button's D...

This method returns an object which provides substitution parameters for the XTemplate used to\ncreate this Button's DOM structure.

\n\n

Instances or subclasses which use a different Template to create a different DOM structure may need to provide\ntheir own implementation of this method.

\n

Returns

  • Object

    Substitution data for a Template. The default implementation which provides data for the default\ntemplate returns an Object containing the following properties:

    \n\n
    • innerCls : String

      A CSS class to apply to the button's text element.

      \n\n
    • splitCls : String

      A CSS class to determine the presence and position of an arrow icon.\n('x-btn-arrow' or 'x-btn-arrow-bottom' or '')

      \n\n
    • iconUrl : String

      The url for the button icon.

      \n\n
    • iconCls : String

      The CSS class for the button icon.

      \n\n
    • glyph : String

      The glyph to use as the button icon.

      \n\n
    • glyphCls : String

      The CSS class to use for the glyph element.

      \n\n
    • glyphFontFamily : String

      The CSS font-family to use for the glyph element.

      \n\n
    • text : String

      The text to display ion the Button.

      \n\n

Overrides: Ext.button.Button.getTemplateArgs

Gets the text for this Button ...

Gets the text for this Button

\n

Returns

...
\n

Parameters

Returns an object containing begin and end properties that indicate the\nleft/right bounds of a right trigger or the t...

Returns an object containing begin and end properties that indicate the\nleft/right bounds of a right trigger or the top/bottom bounds of a bottom trigger.

\n

Returns

Measures the size of the trigger area for menu and split buttons. ...

Measures the size of the trigger area for menu and split buttons. Will be a width for\na right-aligned trigger and a height for a bottom-aligned trigger. Cached after first measurement.

\n
Returns the content region of this element. ...

Returns the content region of this element. That is the region within the borders\nand padding.

\n

Returns

  • Ext.util.Region

    A Region containing \"top, left, bottom, right\" member data.

    \n
Deprecate 5.0 ...

Deprecate 5.0

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

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

\n

Returns

Gets the current X position of the DOM element based on page coordinates. ...

Gets the current X position of the DOM element based on page coordinates.

\n

Returns

  • Number

    The X position of the element

    \n

Overrides: Ext.util.Positionable.getX

Gets the xtype for this component as registered with Ext.ComponentManager. ...

Gets the xtype for this component as registered with Ext.ComponentManager. For a list of all available\nxtypes, see the Ext.Component header. Example usage:

\n\n
var t = new Ext.form.field.Text();\nalert(t.getXType());  // alerts 'textfield'\n
\n

Returns

Returns this Component's xtype hierarchy as a slash-delimited string. ...

Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all available xtypes, see the\nExt.Component header.

\n\n

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

\n\n

Example usage:

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

Available since: 2.3.0

\n

Returns

  • String

    The xtype hierarchy string

    \n
Gets the current position of the DOM element based on page coordinates. ...

Gets the current position of the DOM element based on page coordinates.

\n

Returns

  • Number[]

    The XY position of the element

    \n

Overrides: Ext.util.Positionable.getXY

Gets the current Y position of the DOM element based on page coordinates. ...

Gets the current Y position of the DOM element based on page coordinates.

\n

Returns

  • Number

    The Y position of the element

    \n

Overrides: Ext.util.Positionable.getY

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

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

\n
\n

This method has been deprecated since 4.0

\n

Replaced by getActiveAnimation

\n\n
\n

Returns

Checks if the specified CSS class exists on this element's DOM node. ...

Checks if the specified CSS class exists on this element's DOM node.

\n

Parameters

  • className : String

    The CSS class to check for.

    \n

Returns

  • Boolean

    true if the class exists, else false.

    \n
...
\n

Parameters

Checks to see if this object has any listeners for a specified event, or whether the event bubbles. ...

Checks to see if this object has any listeners for a specified event, or whether the event bubbles. The answer\nindicates whether the event needs firing or not.

\n

Parameters

  • eventName : String

    The name of the event to check for

    \n

Returns

  • Boolean

    true if the event is being listened for or bubbles, else false

    \n
Checks if there is currently a specified uiCls. ...

Checks if there is currently a specified uiCls.

\n

Parameters

  • cls : String

    The cls to check.

    \n
Returns true if the button has a menu and it is visible ...

Returns true if the button has a menu and it is visible

\n

Returns

( [animateTarget], [callback], [scope] ) : Ext.Componentchainable
Hides this Component, setting it to invisible using the configured hideMode. ...

Hides this Component, setting it to invisible using the configured hideMode.

\n

Parameters

  • animateTarget : String/Ext.Element/Ext.Component (optional)

    only valid for floating Components\nsuch as Windows or ToolTips, or regular Components which have\nbeen configured with floating: true.. The target to which the Component should animate while hiding.

    \n

    Defaults to: null

  • callback : Function (optional)

    A callback function to call after the Component is hidden.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the callback is executed.\nDefaults to this Component.

    \n

Returns

Hides this button's menu (if it has one) ...

Hides this button's menu (if it has one)

\n

Returns

This method is called by the Ext.layout.container.Border class when instances are\nadded as regions to the layout. ...

This method is called by the Ext.layout.container.Border class when instances are\nadded as regions to the layout. Since it is valid to add any component to a border\nlayout as a region, this method must be added to Ext.Component but is only ever\ncalled when that component is owned by a border layout.

\n\n

Defined in override Ext.layout.container.border.Region.

\n
Ext.tab.Tab
view source
( )protectedtemplate
The initComponent template method is an important initialization step for a Component. ...

The initComponent template method is an important initialization step for a Component. It is intended to be\nimplemented by each subclass of Ext.Component to provide any needed constructor logic. The\ninitComponent method of the class being created is called first, with each initComponent method\nup the hierarchy to Ext.Component being called thereafter. This makes it easy to implement and,\nif needed, override the constructor logic of the Component at any step in the hierarchy.

\n\n

The initComponent method must contain a call to callParent in order\nto ensure that the parent class' initComponent method is also called.

\n\n

All config options passed to the constructor are applied to this before initComponent is called,\nso you can simply access them with this.someOption.

\n\n

The following example demonstrates using a dynamic string for the text of a button at the time of\ninstantiation of the class.

\n\n
Ext.define('DynamicButtonText', {\n    extend: 'Ext.button.Button',\n\n    initComponent: function() {\n        this.text = new Date();\n        this.renderTo = Ext.getBody();\n        this.callParent();\n    }\n});\n\nExt.onReady(function() {\n    Ext.create('DynamicButtonText');\n});\n
\n

Available since: 1.1.0

\n
\n

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

\n
\n

Overrides: Ext.button.Button.initComponent

( config ) : Ext.Basechainableprotected
Initialize configuration for this class. ...

Initialize configuration for this class. a typical example:

\n\n
Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n
\n

Parameters

Returns

...
\n

Parameters

Initialize any events on this component ...

Initialize any events on this component

\n
Poke in a reference to applyRenderTpl(frameInfo, out) ...

Poke in a reference to applyRenderTpl(frameInfo, out)

\n

Parameters

Called by getHierarchyState to initialize the hierarchyState the first\ntime it is requested. ...

Called by getHierarchyState to initialize the hierarchyState the first\ntime it is requested.

\n\n

Overridden in Ext.rtl.AbstractComponent.

\n

Parameters

Initializes padding by applying it to the target element, or if the layout manages\npadding ensures that the padding o...

Initializes padding by applying it to the target element, or if the layout manages\npadding ensures that the padding on the target element is \"0\".

\n

Parameters

...
\n

Parameters

Initialized the renderData to be used when rendering the renderTpl. ...

Initialized the renderData to be used when rendering the renderTpl.

\n

Returns

  • Object

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

    \n
Initializes the renderTpl. ...

Initializes the renderTpl.

\n

Returns

...
\n

Parameters

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

Initializes the state of the object upon construction.

\n
Applies padding, margin, border, top, left, height, and width configs to the\nappropriate elements. ...

Applies padding, margin, border, top, left, height, and width configs to the\nappropriate elements.

\n

Parameters

Tests whether this Component matches the selector string. ...

Tests whether this Component matches the selector string.

\n

Parameters

  • selector : String

    The selector string to test against.

    \n

Returns

  • Boolean

    true if this Component matches the selector.

    \n
Utility method to determine if a Component is floating, and has an owning Container whose coordinate system\nit must b...

Utility method to determine if a Component is floating, and has an owning Container whose coordinate system\nit must be positioned in when using setPosition.

\n
...
\n

Parameters

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

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

\n

Parameters

Returns

  • Boolean

    true if the component is the descendant of a particular container, otherwise false.

    \n
Method to determine whether this Component is currently disabled. ...

Method to determine whether this Component is currently disabled.

\n

Returns

  • Boolean

    the disabled state of this Component.

    \n
Method to determine whether this Component is draggable. ...

Method to determine whether this Component is draggable.

\n

Returns

  • Boolean

    the draggable state of this component.

    \n
Method to determine whether this Component is droppable. ...

Method to determine whether this Component is droppable.

\n

Returns

  • Boolean

    the droppable state of this component.

    \n
Method to determine whether this Component is floating. ...

Method to determine whether this Component is floating.

\n

Returns

  • Boolean

    the floating state of this component.

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

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

\n

Returns

  • Boolean

    the hidden state of this Component.

    \n
Determines whether this Component is the root of a layout. ...

Determines whether this Component is the root of a layout. This returns true if\nthis component can run its layout without assistance from or impact on its owner.\nIf this component cannot run its layout given these restrictions, false is returned\nand its owner will be considered as the next candidate for the layout root.

\n\n

Setting the _isLayoutRoot property to true causes this method to always\nreturn true. This may be useful when updating a layout of a Container which shrink\nwraps content, and you know that it will not change size, and so can safely be the\ntopmost participant in the layout run.

\n
Returns true if layout is suspended for this component. ...

Returns true if layout is suspended for this component. This can come from direct\nsuspension of this component's layout activity (Ext.Container.suspendLayout) or if one\nof this component's containers is suspended.

\n

Returns

  • Boolean

    true layout of this component is suspended.

    \n
Returns true if this component's local coordinate system is rtl. ...

Returns true if this component's local coordinate system is rtl. For normal\ncomponents this equates to the value of isParentRtl(). Floaters are a bit different\nbecause a floater's element can be a childNode of something other than its\nparent component's element. For floaters we have to read the dom to see if the\ncomponent's element's parentNode has a css direction value of \"rtl\".

\n\n

Defined in override Ext.rtl.AbstractComponent.

\n

Returns

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

Defined in override Ext.rtl.AbstractComponent.

\n
Returns true if this component's parent container is rtl. ...

Returns true if this component's parent container is rtl. Used by rtl positioning\nmethods to determine if the component should be positioned using a right-to-left\ncoordinate system.

\n\n

Defined in override Ext.rtl.AbstractComponent.

\n

Returns

Returns true if this component is visible. ...

Returns true if this component is visible.

\n

Available since: 1.1.0

\n

Parameters

  • deep : Boolean (optional)

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

    \n\n

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

    \n

    Defaults to: false

Returns

  • Boolean

    true if this component is visible, false otherwise.

    \n
Tests whether or not this Component is of a specific xtype. ...

Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended\nfrom the xtype (default) or whether it is directly of the xtype specified (shallow = true).

\n\n

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

\n\n

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

\n\n

Example usage:

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

Available since: 2.3.0

\n

Parameters

  • xtype : String

    The xtype to check for this Component

    \n
  • shallow : Boolean (optional)

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

    \n

    Defaults to: false

Returns

  • Boolean

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

    \n
...
\n

Parameters

( item, ename, [fn], [scope], [options] ) : Object
Shorthand for addManagedListener. ...

Shorthand for addManagedListener.

\n\n

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

\n

Parameters

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

    The item to which to add a listener/listeners.

    \n\n
  • ename : Object/String

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

    \n\n
  • fn : Function (optional)

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

    \n\n
  • scope : Object (optional)

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

    \n\n
  • options : Object (optional)

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

    \n\n

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n\n\n\n

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

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

    And when those listeners need to be removed:

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

    or

    \n\n\n\n\n
    this.btnListeners.destroy();\n
    \n\n
( direction, distance, [animate] )
Move the element relative to its current position. ...

Move the element relative to its current position.

\n

Parameters

  • direction : String

    Possible values are:

    \n\n
      \n
    • \"l\" (or \"left\")
    • \n
    • \"r\" (or \"right\")
    • \n
    • \"t\" (or \"top\", or \"up\")
    • \n
    • \"b\" (or \"bottom\", or \"down\")
    • \n
    \n\n
  • distance : Number

    How far to move the element in pixels

    \n
  • animate : Boolean/Object (optional)

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

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

Shorthand for removeManagedListener.

\n\n

Removes listeners that were added by the mon method.

\n

Parameters

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

    The item from which to remove a listener/listeners.

    \n\n
  • ename : Object/String

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

    \n\n
  • fn : Function (optional)

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

    \n\n
  • scope : Object (optional)

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

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

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

\n\n

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

\n

Parameters

Returns

  • Ext.Component

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

    \n
Returns the next sibling of this Component. ...

Returns the next sibling of this Component.

\n\n

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

\n\n

May also be referred to as next()

\n\n

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

\n

Parameters

Returns

  • Ext.Component

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

    \n
( eventName, [fn], [scope], [options] ) : Object
Shorthand for addListener. ...

Shorthand for addListener.

\n\n

Appends an event handler to this object. For example:

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

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

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

One can also specify options for each event handler separately:

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

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

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

Parameters

  • eventName : String/Object

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

    \n\n
  • fn : Function (optional)

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

    \n\n
  • scope : Object (optional)

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

    \n\n
  • options : Object (optional)

    An object containing handler configuration.

    \n\n\n\n\n

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

    \n\n\n\n\n

    This object may contain any of the following properties:

    \n\n
    • scope : Object

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

      \n\n
    • delay : Number

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

      \n\n
    • single : Boolean

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

      \n\n
    • buffer : Number

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

      \n\n
    • target : Ext.util.Observable

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

      \n\n
    • element : String

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

      \n\n\n\n\n

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

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

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

      \n\n

      Defaults to: false

    • priority : Number (optional)

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

      \n\n\n\n\n

      Combining Options

      \n\n\n\n\n

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

      \n\n\n\n\n

      A delayed, one-time listener.

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

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n\n\n\n

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

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

    And when those listeners need to be removed:

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

    or

    \n\n\n\n\n
    this.btnListeners.destroy();\n
    \n\n
( container, pos )protectedtemplate
Method to manage awareness of when components are added to their\nrespective Container, firing an added event. ...

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

\n\n

Allows addition of behavior when a Component is added to a\nContainer. At this stage, the Component is in the parent\nContainer's collection of child items. After calling the\nsuperclass's onAdded, the ownerCt reference will be present,\nand if configured with a ref, the refOwner will be set.

\n

Available since: 3.4.0

\n
\n

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

\n
\n

Parameters

Overrides: Ext.AbstractComponent.onAdded

private ...

private

\n

Parameters

...
\n

Parameters

...
\n

Parameters

Ext.tab.Tab
view source
( )private
Listener attached to click events on the Tab's close button ...

Listener attached to click events on the Tab's close button

\n
( names, callback, scope )private
...
\n

Parameters

Ext.tab.Tab
view source
( e )private
...
\n

Parameters

Ext.tab.Tab
view source
( )protectedtemplate
Allows addition of behavior to the destroy operation. ...

Allows addition of behavior to the destroy operation.\nAfter calling the superclass's onDestroy, the Component will be destroyed.

\n
\n

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

\n
\n

Overrides: Ext.button.Button.onDestroy

See comments in onFocus\n\nAllows addition of behavior to the disable operation. ...

See comments in onFocus

\n\n

Allows addition of behavior to the disable operation.\nAfter calling the superclass's onDisable, the Component will be disabled.

\n
\n

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

\n
\n

Overrides: Ext.AbstractComponent.onDisable

...
\n

Parameters

Allows addition of behavior to the enable operation. ...

Allows addition of behavior to the enable operation.\nAfter calling the superclass's onEnable, the Component will be enabled.

\n
\n

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

\n
\n
Ext.tab.Tab
view source
( e )private
...
\n

Parameters

private ...

private

\n

Parameters

( [animateTarget], [callback], [scope] )protectedtemplate
Possibly animates down to a target element. ...

Possibly animates down to a target element.

\n\n

Allows addition of behavior to the hide operation. After\ncalling the superclass’s onHide, the Component will be hidden.

\n\n

Gets passed the same parameters as hide.

\n
\n

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

\n
\n

Parameters

Overrides: Ext.AbstractComponent.onHide

Listen for TAB events and wrap round if tabbing of either end of the Floater ...

Listen for TAB events and wrap round if tabbing of either end of the Floater

\n

Parameters

...
\n

Parameters

...
\n

Parameters

virtual mouseleave handler called when it is detected that the mouseout event\nsignified the mouse leaving the arrow a...

virtual mouseleave handler called when it is detected that the mouseout event\nsignified the mouse leaving the arrow area of the button - the <em>.

\n

Parameters

virtual mouseenter handler called when it is detected that the mouseover event\nsignified the mouse entering the arrow...

virtual mouseenter handler called when it is detected that the mouseover event\nsignified the mouse entering the arrow area of the button - the <em>.

\n

Parameters

virtual mouseenter handler called when it is detected that the mouseout event\nsignified the mouse entering the encaps...

virtual mouseenter handler called when it is detected that the mouseout event\nsignified the mouse entering the encapsulating element.

\n

Parameters

virtual mouseleave handler called when it is detected that the mouseover event\nsignified the mouse entering the encap...

virtual mouseleave handler called when it is detected that the mouseover event\nsignified the mouse entering the encapsulating element.

\n

Parameters

mousemove handler called when the mouse moves anywhere within the encapsulating element. ...

mousemove handler called when the mouse moves anywhere within the encapsulating element.\nThe position is checked to determine if the mouse is entering or leaving the trigger area. Using\nmousemove to check this is more resource intensive than we'd like, but it is necessary because\nthe trigger area does not line up exactly with sub-elements so we don't always get mouseover/out\nevents when needed. In the future we should consider making the trigger a separate element that\nis absolutely positioned and sized over the trigger area.

\n

Parameters

mouseout handler called when a mouseout event occurs anywhere within the encapsulating element -\nor the mouse leaves ...

mouseout handler called when a mouseout event occurs anywhere within the encapsulating element -\nor the mouse leaves the encapsulating element.\nThe targets are interrogated to see what is being exited to where.

\n

Parameters

mouseover handler called when a mouseover event occurs anywhere within the encapsulating element. ...

mouseover handler called when a mouseover event occurs anywhere within the encapsulating element.\nThe targets are interrogated to see what is being entered from where.

\n

Parameters

...
\n

Parameters

Called after the component is moved, this method is empty by default but can be implemented by any\nsubclass that need...

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

\n
\n

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

\n
\n

Parameters

  • x : Number

    The new x position.

    \n
  • y : Number

    The new y position.

    \n
( destroying )protectedtemplate
Method to manage awareness of when components are removed from their\nrespective Container, firing a removed event. ...

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

\n\n

Allows addition of behavior when a Component is removed from\nits parent Container. At this stage, the Component has been\nremoved from its parent Container's collection of child items,\nbut has not been destroyed (It will be destroyed if the parent\nContainer's autoDestroy is true, or if the remove call was\npassed a truthy second parameter). After calling the\nsuperclass's onRemoved, the ownerCt and the refOwner will not\nbe present.

\n

Available since: 3.4.0

\n
\n

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

\n
\n

Parameters

  • destroying : Boolean

    Will be passed as true if the Container performing the remove operation will delete this\nComponent upon remove.

    \n
Ext.tab.Tab
view source
( parentNode, containerIdx )protectedtemplate
Template method called when this Component's DOM structure is created. ...

Template method called when this Component's DOM structure is created.

\n\n

At this point, this Component's (and all descendants') DOM structure exists but it has not\nbeen layed out (positioned and sized).

\n\n

Subclasses which override this to gain access to the structure at render time should\ncall the parent class's method before attempting to access any child elements of the Component.

\n
\n

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

\n
\n

Parameters

  • parentNode : Ext.core.Element

    The parent Element in which this Component's encapsulating element is contained.

    \n\n\n\n
  • containerIdx : Number

    The index within the parent Container's child collection of this Component.

    \n\n\n\n

Overrides: Ext.button.Button.onRender

...
\n

Parameters

( width, height, oldWidth, oldHeight )protectedtemplate
Allows addition of behavior to the resize operation. ...

Allows addition of behavior to the resize operation.

\n\n

Called when Ext.resizer.Resizer#drag event is fired.

\n
\n

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

\n
\n

Parameters

( [animateTarget], [callback], [scope] )protectedtemplate
Allows addition of behavior to the show operation. ...

Allows addition of behavior to the show operation. After\ncalling the superclass's onShow, the Component will be visible.

\n\n

Override in subclasses where more complex behaviour is needed.

\n\n

Gets passed the same parameters as show.

\n
\n

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

\n
\n

Parameters

Overrides: Ext.AbstractComponent.onShow

( [callback], [scope] )protectedtemplate
Invoked after the afterShow method is complete. ...

Invoked after the afterShow method is complete.

\n\n

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

\n
\n

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

\n
\n

Parameters

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

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

\n
Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n

Parameters

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

Template method to do any post-blur processing.

\n

Parameters

Prepares a given class for observable instances. ...

Prepares a given class for observable instances. This method is called when a\nclass derives from this class or uses this class as a mixin.

\n

Parameters

  • T : Function

    The class constructor to prepare.

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

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

\n\n

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

\n

Parameters

Returns

  • Ext.Component

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

    \n
Returns the previous sibling of this Component. ...

Returns the previous sibling of this Component.

\n\n

Optionally selects the previous sibling which matches the passed ComponentQuery\nselector.

\n\n

May also be referred to as prev()

\n\n

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

\n

Parameters

Returns

  • Ext.Component

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

    \n
...
\n

Parameters

Retrieves all descendant components which match the passed selector. ...

Retrieves all descendant components which match the passed selector.\nExecutes an Ext.ComponentQuery.query using this container as its root.

\n

Parameters

  • selector : String (optional)

    Selector complying to an Ext.ComponentQuery selector.\nIf no selector is specified all items will be returned.

    \n

Returns

Retrieves all descendant components which match the passed function. ...

Retrieves all descendant components which match the passed function.\nThe function should return false for components that are to be\nexcluded from the selection.

\n

Parameters

  • fn : Function

    The matcher function. It will be called with a single argument,\nthe component being tested.

    \n
  • scope : Object (optional)

    The scope in which to run the function. If not specified,\nit will default to the active component.

    \n

Returns

Finds a component at any level under this container matching the id/itemId. ...

Finds a component at any level under this container matching the id/itemId.\nThis is a shorthand for calling ct.down('#' + id);

\n

Parameters

Returns

Called by Component#doAutoRender\n\nRegister a Container configured floating: true with this Component's ZIndexManager. ...

Called by Component#doAutoRender

\n\n

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

\n\n

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

\n

Parameters

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

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

\n\n

For example if you are extending Grid, you might decide to forward some events from store.\nSo you can do this inside your initComponent:

\n\n
this.relayEvents(this.getStore(), ['load']);\n
\n\n

The grid instance will then have an observable 'load' event which will be passed the\nparameters of the store's load event and any function fired with the grid's load event\nwould have access to the grid using the this keyword.

\n

Parameters

  • origin : Object

    The Observable whose events this object is to relay.

    \n
  • events : String[]

    Array of event names to relay.

    \n
  • prefix : String (optional)

    A common prefix to prepend to the event names. For example:

    \n\n
    this.relayEvents(this.getStore(), ['load', 'clear'], 'store');\n
    \n\n

    Now the grid will forward 'load' and 'clear' events of store as 'storeload' and 'storeclear'.

    \n

Returns

  • Object

    A Destroyable object. An object which implements the destroy method which, when destroyed, removes all relayers. For example:

    \n\n
    this.storeRelayers = this.relayEvents(this.getStore(), ['load', 'clear'], 'store');\n
    \n\n

    Can be undone by calling

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

    or

    \n\n
    this.store.relayers.destroy();\n
    \n
Remove any anchor to this element. ...

Remove any anchor to this element. See anchorTo.

\n

Returns

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

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

\n

Parameters

...

\n

Available since: 2.3.0

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

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

\n

Parameters

Returns

Removes a cls to the uiCls array, which will also call removeUIClsFromElement and removes it from all\nelements of thi...

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

\n

Parameters

  • cls : String/String[]

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

    \n
Removes an event handler. ...

Removes an event handler.

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n\n
  • fn : Function

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

    \n\n
  • scope : Object (optional)

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

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

Removes listeners that were added by the mon method.

\n

Parameters

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

    The item from which to remove a listener/listeners.

    \n\n
  • ename : Object/String

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

    \n\n
  • fn : Function (optional)

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

    \n\n
  • scope : Object (optional)

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

    \n\n
inherit docs\n\nRemove a single managed listener item ...

inherit docs

\n\n

Remove a single managed listener item

\n

Parameters

  • isClear : Boolean

    True if this is being called during a clear

    \n
  • managedListener : Object

    The managed listener item\nSee removeManagedListener for other args

    \n

Overrides: Ext.util.Observable.removeManagedListenerItem

...
\n

Parameters

Method which removes a specified UI + uiCls from the components element. ...

Method which removes a specified UI + uiCls from the components element. The cls which is added to the element\nwill be: this.baseCls + '-' + ui.

\n

Parameters

  • ui : String

    The UI to add to the element.

    \n
Method which removes a specified UI from the components element. ...

Method which removes a specified UI from the components element.

\n
( [container], [position] )
Renders the Component into the passed HTML element. ...

Renders the Component into the passed HTML element.

\n\n

If you are using a Container object to house this\nComponent, then do not use the render method.

\n\n

A Container's child Components are rendered by that Container's\nlayout manager when the Container is first rendered.

\n\n

If the Container is already rendered when a new child Component is added, you may need to call\nthe Container's doLayout to refresh the view which\ncauses any unrendered child Components to be rendered. This is required so that you can add\nmultiple child components if needed while only refreshing the layout once.

\n\n

When creating complex UIs, it is important to remember that sizing and positioning\nof child items is the responsibility of the Container's layout\nmanager. If you expect child items to be sized in response to user interactions, you must\nconfigure the Container with a layout manager which creates and manages the type of layout you\nhave in mind.

\n\n

Omitting the Container's layout config means that a basic\nlayout manager is used which does nothing but render child components sequentially into the\nContainer. No sizing or positioning will be performed in this situation.

\n

Parameters

  • container : Ext.Element/HTMLElement/String (optional)

    The element this Component should be\nrendered into. If it is being created from existing markup, this should be omitted.

    \n
  • position : String/Number (optional)

    The element ID or DOM node index within the container before\nwhich this component will be inserted (defaults to appending to the end of the container)

    \n
Resumes firing of the named event(s). ...

Resumes firing of the named event(s).

\n\n

After calling this method to resume events, the events will fire when requested to fire.

\n\n

Note that if the suspendEvent method is called multiple times for a certain event,\nthis converse method will have to be called the same number of times for it to resume firing.

\n

Parameters

  • eventName : String...

    Multiple event names to resume.

    \n
Resumes firing events (see suspendEvents). ...

Resumes firing events (see suspendEvents).

\n\n

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

\n
...
\n

Parameters

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

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

\n

Parameters

  • propName : String

    The name of the property to save.

    \n
  • state : Object

    The state object in to which to save the property.

    \n
  • stateName : String (optional)

    The name to use for the property in state.

    \n

Returns

  • Boolean

    True if the property was saved, false if not.

    \n
Gathers additional named properties of the instance and adds their current values\nto the passed state object. ...

Gathers additional named properties of the instance and adds their current values\nto the passed state object.

\n

Parameters

  • propNames : String/String[]

    The name (or array of names) of the property to save.

    \n
  • state : Object

    The state object in to which to save the property values.

    \n

Returns

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

Saves the state of the object to the persistence store.

\n
( deltaX, deltaY, animate )
Scrolls this Component's target element by the passed delta values, optionally animating. ...

Scrolls this Component's target element by the passed delta values, optionally animating.

\n\n

All of the following are equivalent:

\n\n
 comp.scrollBy(10, 10, true);\n comp.scrollBy([10, 10], true);\n comp.scrollBy({ x: 10, y: 10 }, true);\n
\n

Parameters

  • deltaX : Number/Number[]/Object

    Either the x delta, an Array specifying x and y deltas or\nan object with \"x\" and \"y\" properties.

    \n
  • deltaY : Number/Boolean/Object

    Either the y delta, or an animate flag or config object.

    \n
  • animate : Boolean/Object

    Animate flag/config object if the delta values were passed separately.

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

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

\n

Returns

( [active], [newActive] )
This method is called internally by Ext.ZIndexManager to signal that a floating Component has either been\nmoved to th...

This method is called internally by Ext.ZIndexManager to signal that a floating Component has either been\nmoved to the top of its zIndex stack, or pushed from the top of its zIndex stack.

\n\n

If a Window is superceded by another Window, deactivating it hides its shadow.

\n\n

This method also fires the activate or\ndeactivate event depending on which action occurred.

\n

Parameters

  • active : Boolean (optional)

    True to activate the Component, false to deactivate it.

    \n

    Defaults to: false

  • newActive : Ext.Component (optional)

    The newly active Component which is taking over topmost zIndex position.

    \n
Sets the overflow on the content element of the component. ...

Sets the overflow on the content element of the component.

\n

Parameters

  • scroll : Boolean

    True to allow the Component to auto scroll.

    \n

Returns

...
\n

Parameters

  • border : String/Number

    The border, see border. If a falsey value is passed\nthe border will be removed.

    \n
This method changes the region config property for this border region. ...

This method changes the region config property for this border region. This is\nonly valid if this component is in a border layout (Ext.layout.container.Border).

\n\n

Defined in override Ext.layout.container.border.Region.

\n

Parameters

  • region : String

    The new region value (\"north\", \"south\", \"east\" or\n\"west\").

    \n

Returns

  • String

    The previous value of the region property.

    \n
Sets the element's box. ...

Sets the element's box. If animate is true then x, y, width, and height will be\nanimated concurrently.

\n

Parameters

  • box : Object

    The box to fill {x, y, width, height}

    \n
  • animate : Boolean/Object (optional)

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

    \n

Returns

Ext.tab.Tab
view source
( card )
Sets this tab's attached card. ...

Sets this tab's attached card. Usually this is handled automatically by the Ext.tab.Panel that this Tab\nbelongs to and would not need to be done by the developer

\n

Parameters

Ext.tab.Tab
view source
( closable )
Sets the tab as either closable or not. ...

Sets the tab as either closable or not.

\n

Parameters

  • closable : Boolean

    Pass false to make the tab not closable. Otherwise the tab will be made closable (eg a\nclose button will appear on the tab)

    \n
...
\n

Parameters

( config, applyIfNotSet ) : Ext.Basechainableprivate
...
\n

Parameters

Returns

Enable or disable the component. ...

Enable or disable the component.

\n

Parameters

  • disabled : Boolean

    true to disable.

    \n
Sets the dock position of this component in its parent panel. ...

Sets the dock position of this component in its parent panel. Note that this only has effect if this item is part\nof the dockedItems collection of a parent that has a DockLayout (note that any Panel has a DockLayout by default)

\n

Parameters

  • dock : Object

    The dock position.

    \n
  • layoutParent : Boolean (optional)

    true to re-layout parent.

    \n

    Defaults to: false

Returns

Ext.tab.Tab
view source
( )private
...
\n
...
\n

Parameters

Sets this button's glyph ...

Sets this button's glyph

\n

Parameters

  • glyph : Number/String

    the numeric charCode or string charCode/font-family.\nThis parameter expects a format consistent with that of glyph

    \n

Returns

Assigns this Button's click handler ...

Assigns this Button's click handler

\n

Parameters

  • handler : Function

    The function to call when the button is clicked

    \n
  • scope : Object (optional)

    The scope (this reference) in which the handler function is executed.\nDefaults to this Button.

    \n

Returns

Sets the height of the component. ...

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

\n

Parameters

  • height : Number

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

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

Returns

...
\n

Parameters

Sets the href of the embedded anchor element to the passed URL. ...

Sets the href of the embedded anchor element to the passed URL.

\n\n

Also appends any configured baseParams and parameters set through setParams.

\n

Parameters

  • href : String

    The URL to set in the anchor element.

    \n
Sets the background image (inline style) of the button. ...

Sets the background image (inline style) of the button. This method also changes the value of the icon\nconfig internally.

\n

Parameters

  • icon : String

    The path to an image to display in the button

    \n

Returns

Sets the CSS class that provides a background image to use as the button's icon. ...

Sets the CSS class that provides a background image to use as the button's icon. This method also changes the\nvalue of the iconCls config internally.

\n

Parameters

  • cls : String

    The CSS class providing the icon image

    \n

Returns

This method allows you to show or hide a LoadMask on top of this component. ...

This method allows you to show or hide a LoadMask on top of this component.

\n

Parameters

  • load : Boolean/Object/String

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

    \n
  • targetEl : Boolean (optional)

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

    \n

    Defaults to: false

Returns

  • Ext.LoadMask

    The LoadMask instance that has just been shown.

    \n
Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n\n

Sets the local x coordinate of this element using CSS style. When used on an\nabsolute positioned element this method is symmetrical with getLocalX, but\nmay not be symmetrical when used on a relatively positioned element.

\n

Parameters

  • x : Number

    The x coordinate. A value of null sets the left style to 'auto'.

    \n

Returns

Overrides: Ext.util.Positionable.setLocalX

Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n\n

Sets the local x and y coordinates of this element using CSS style. When used on an\nabsolute positioned element this method is symmetrical with getLocalXY, but\nmay not be symmetrical when used on a relatively positioned element.

\n

Parameters

  • x : Number/Array

    The x coordinate or an array containing [x, y]. A value of\nnull sets the left style to 'auto'

    \n
  • y : Number (optional)

    The y coordinate, required if x is not an array. A value of\nnull sets the top style to 'auto'

    \n

Returns

Overrides: Ext.util.Positionable.setLocalXY

Sets the local y coordinate of this element using CSS style. ...

Sets the local y coordinate of this element using CSS style. When used on an\nabsolute positioned element this method is symmetrical with getLocalY, but\nmay not be symmetrical when used on a relatively positioned element.

\n

Parameters

  • y : Number

    The y coordinate. A value of null sets the top style to 'auto'.

    \n

Returns

Overrides: Ext.util.Positionable.setLocalY

Sets the margin on the target element. ...

Sets the margin on the target element.

\n

Parameters

( overflowX, overflowY ) : Ext.Componentchainable
Sets the overflow x/y on the content element of the component. ...

Sets the overflow x/y on the content element of the component. The x/y overflow\nvalues can be any valid CSS overflow (e.g., 'auto' or 'scroll'). By default, the\nvalue is 'hidden'. Passing null for one of the values will erase the inline style.\nPassing undefined will preserve the current value.

\n

Parameters

  • overflowX : String

    The overflow-x value.

    \n
  • overflowY : String

    The overflow-y value.

    \n

Returns

Sets the page XY position of the component. ...

Sets the page XY position of the component. To set the left and top instead, use setPosition.\nThis method fires the move event.

\n

Parameters

  • x : Number/Number[]

    The new x position or an array of [x,y].

    \n
  • y : Number (optional)

    The new y position.

    \n
  • animate : Boolean/Object (optional)

    True to animate the Component into its new position. You may also pass an\nanimation configuration.

    \n

Returns

Sets the href of the link dynamically according to the params passed, and any baseParams configured. ...

Sets the href of the link dynamically according to the params passed, and any baseParams configured.

\n\n

Only valid if the Button was originally configured with a href

\n

Parameters

  • params : Object

    Parameters to use in the href URL.

    \n
( x, [y], [animate] ) : Ext.Componentchainable
Sets the left and top of the component. ...

Sets the left and top of the component. To set the page XY position instead, use setPagePosition. This\nmethod fires the move event.

\n

Parameters

  • x : Number/Number[]/Object

    The new left, an array of [x,y], or animation config object containing x and y properties.

    \n
  • y : Number (optional)

    The new top.

    \n
  • animate : Boolean/Object (optional)

    If true, the Component is animated into its new position. You may also pass an\nanimation configuration.

    \n

Returns

Sets the element's position and size to the specified region. ...

Sets the element's position and size to the specified region. If animation is true\nthen width, height, x and y will be animated concurrently.

\n

Parameters

  • region : Ext.util.Region

    The region to fill

    \n
  • animate : Boolean/Object (optional)

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

    \n

Returns

Sets the weight config property for this component. ...

Sets the weight config property for this component. This is only valid if this\ncomponent is in a border layout (Ext.layout.container.Border).

\n\n

Defined in override Ext.layout.container.border.Region.

\n

Parameters

  • weight : Number

    The new weight value.

    \n

Returns

  • Number

    The previous value of the weight property.

    \n
Method to change the scale of the button. ...

Method to change the scale of the button. See scale for allowed configurations.

\n

Parameters

  • scale : String

    The scale to change to.

    \n
Sets the width and height of this Component. ...

Sets the width and height of this Component. This method fires the resize event. This method can accept\neither width and height as separate arguments, or you can pass a size object like {width:10, height:20}.

\n

Parameters

  • width : Number/String/Object

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

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

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

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

Returns

Sets this Button's text ...

Sets this Button's text

\n

Parameters

  • text : String

    The button text

    \n

Returns

Sets the text alignment for this button. ...

Sets the text alignment for this button.

\n

Parameters

Sets the tooltip for this Button. ...

Sets the tooltip for this Button.

\n

Parameters

Returns

inherit docs\n\nSets the UI for the component. ...

inherit docs

\n\n

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

\n

Parameters

  • ui : String

    The new UI for the component.

    \n

Overrides: Ext.AbstractComponent.setUI

Convenience function to hide or show this component by Boolean. ...

Convenience function to hide or show this component by Boolean.

\n

Available since: 1.1.0

\n

Parameters

  • visible : Boolean

    true to show, false to hide.

    \n

Returns

Sets the width of the component. ...

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

\n

Parameters

  • width : Number

    The new width to setThis may be one of:

    \n\n\n\n

Returns

Sets the X position of the DOM element based on page coordinates. ...

Sets the X position of the DOM element based on page coordinates.

\n

Parameters

  • The : Number

    X position

    \n
  • animate : Boolean/Object (optional)

    True for the default animation, or a standard\nElement animation config object

    \n

Returns

Overrides: Ext.util.Positionable.setX

Sets the position of the DOM element in page coordinates. ...

Sets the position of the DOM element in page coordinates.

\n

Parameters

  • pos : Number[]

    Contains X & Y [x, y] values for new position (coordinates\nare page-based)

    \n
  • animate : Boolean/Object (optional)

    True for the default animation, or a standard\nElement animation config object

    \n

Returns

Overrides: Ext.util.Positionable.setXY

Sets the Y position of the DOM element based on page coordinates. ...

Sets the Y position of the DOM element based on page coordinates.

\n

Parameters

  • The : Number

    Y position

    \n
  • animate : Boolean/Object (optional)

    True for the default animation, or a standard\nElement animation config object

    \n

Returns

Overrides: Ext.util.Positionable.setY

z-index is managed by the zIndexManager and may be overwritten at any time. ...

z-index is managed by the zIndexManager and may be overwritten at any time.\nReturns the next z-index to be used.\nIf this is a Container, then it will have rebased any managed floating Components,\nand so the next available z-index will be approximately 10000 above that.

\n

Parameters

Inject a reference to the function which applies the render template into the framing template. ...

Inject a reference to the function which applies the render template into the framing template. The framing template\nwraps the content.

\n

Parameters

...
\n

Parameters

( [animateTarget], [callback], [scope] ) : Ext.Componentchainable
Shows this Component, rendering it first if autoRender or floating are true. ...

Shows this Component, rendering it first if autoRender or floating are true.

\n\n

After being shown, a floating Component (such as a Ext.window.Window), is activated it and\nbrought to the front of its z-index stack.

\n

Parameters

  • animateTarget : String/Ext.Element (optional)

    only valid for floating Components such as Windows or ToolTips, or regular Components which have been configured\nwith floating: true. The target from which the Component should animate from while opening.

    \n

    Defaults to: null

  • callback : Function (optional)

    A callback function to call after the Component is displayed.\nOnly necessary if animation was specified.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the callback is executed.\nDefaults to this Component.

    \n

Returns

Overrides: Ext.AbstractComponent.show

( x, [y], [animate] ) : Ext.Componentchainable
Displays component at specific xy position. ...

Displays component at specific xy position.\nA floating component (like a menu) is positioned relative to its ownerCt if any.\nUseful for popping up a context menu:

\n\n
listeners: {\n    itemcontextmenu: function(view, record, item, index, event, options) {\n        Ext.create('Ext.menu.Menu', {\n            width: 100,\n            height: 100,\n            margin: '0 0 10 0',\n            items: [{\n                text: 'regular item 1'\n            },{\n                text: 'regular item 2'\n            },{\n                text: 'regular item 3'\n            }]\n        }).showAt(event.getXY());\n    }\n}\n
\n

Parameters

  • x : Number/Number[]

    The new x position or array of [x,y].

    \n
  • y : Number (optional)

    The new y position

    \n
  • animate : Boolean/Object (optional)

    True to animate the Component into its new position. You may also pass an\nanimation configuration.

    \n

Returns

( component, [position], [offsets] ) : Ext.Componentchainable
Shows this component by the specified Component or Element. ...

Shows this component by the specified Component or Element.\nUsed when this component is floating.

\n

Parameters

Returns

Shows this button's menu (if it has one) ...

Shows this button's menu (if it has one)

\n

Parameters

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

Get the reference to the class from which this object was instantiated. Note that unlike self,\nthis.statics() is scope-independent and it always returns the class from which it was called, regardless of what\nthis points to during run-time

\n\n
Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n
\n

Returns

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

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

\n

Returns

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

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

\n
\n

This method has been deprecated since 4.0

\n

Replaced by stopAnimation

\n\n
\n

Returns

Suspends firing of the named event(s). ...

Suspends firing of the named event(s).

\n\n

After calling this method to suspend events, the events will no longer fire when requested to fire.

\n\n

Note that if this is called multiple times for a certain event, the converse method\nresumeEvent will have to be called the same number of times for it to resume firing.

\n

Parameters

  • eventName : String...

    Multiple event names to suspend.

    \n
Suspends the firing of all events. ...

Suspends the firing of all events. (see resumeEvents)

\n

Parameters

  • queueSuspended : Boolean

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

    \n
Ext.tab.Tab
view source
( )private
This method ensures that the closeBtn element exists or not based on 'closable'. ...

This method ensures that the closeBtn element exists or not based on 'closable'.

\n
Ext.tab.Tab
view source
( )private
This method ensures that the UI classes are added or removed based on 'closable'. ...

This method ensures that the UI classes are added or removed based on 'closable'.

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

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

\n

Returns

synchronizes the hidden state of this component with the state of its hierarchy ...

synchronizes the hidden state of this component with the state of its hierarchy

\n
Sends this Component to the back of (lower z-index than) any other visible windows ...

Sends this Component to the back of (lower z-index than) any other visible windows

\n

Returns

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

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

\n\n

If this Component is modal, inserts the modal mask just below this Component in the z-index stack.

\n

Parameters

  • preventFocus : Boolean (optional)

    Specify true to prevent the Component from being focused.

    \n

    Defaults to: false

Returns

( [state], [suppressEvent] ) : Ext.button.Buttonchainable
If a state it passed, it becomes the pressed state otherwise the current state is toggled. ...

If a state it passed, it becomes the pressed state otherwise the current state is toggled.

\n

Parameters

  • state : Boolean (optional)

    Force a particular state

    \n
  • suppressEvent : Boolean (optional)

    True to stop events being fired when calling this method.

    \n

    Defaults to: false

Returns

Translates the passed page coordinates into left/top css values for the element ...

Translates the passed page coordinates into left/top css values for the element

\n

Parameters

  • x : Number/Array

    The page x or an array containing [x, y]

    \n
  • y : Number (optional)

    The page y, required if x is not an array

    \n

Returns

  • Object

    An object with left and top properties. e.g.\n{left: (value), top: (value)}

    \n
Translates the passed page coordinates into x and y css values for the element ...

Translates the passed page coordinates into x and y css values for the element

\n

Parameters

  • x : Number/Array

    The page x or an array containing [x, y]

    \n
  • y : Number (optional)

    The page y, required if x is not an array

    \n

Returns

  • Object

    An object with x and y properties. e.g.\n{x: (value), y: (value)}

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

Shorthand for removeListener.

\n\n

Removes an event handler.

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n\n
  • fn : Function

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

    \n\n
  • scope : Object (optional)

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

    \n\n
Overridden in Ext.rtl.AbstractComponent. ...

Overridden in Ext.rtl.AbstractComponent.

\n

Parameters

Navigates up the ownership hierarchy searching for an ancestor Container which matches any passed simple selector or ...

Navigates up the ownership hierarchy searching for an ancestor Container which matches any passed simple selector or component.

\n\n

Important. There is not a universal upwards navigation pointer. There are several upwards relationships\nsuch as the button which activates a menu, or the\nmenu item which activated a submenu, or the\ncolumn header which activated the column menu.

\n\n

These differences are abstracted away by this method.

\n\n

Example:

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

Parameters

  • selector : String/Ext.Component (optional)

    The simple selector component or actual component to test. If not passed the immediate owner/activater is returned.

    \n
  • limit : String/Number/Ext.Component (optional)

    This may be a selector upon which to stop the upward scan, or a limit of teh number of steps, or Component reference to stop on.

    \n

Returns

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

Update the content area of a component.

\n

Available since: 3.4.0

\n

Parameters

  • htmlOrData : String/Object

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

    \n
  • loadScripts : Boolean (optional)

    Only legitimate when using the html configuration.

    \n

    Defaults to: false

  • callback : Function (optional)

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

    \n
Injected as an override by Ext.Aria.initialize ...

Injected as an override by Ext.Aria.initialize

\n
Sets the current box measurements of the component's underlying element. ...

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

\n

Parameters

  • box : Object

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

    \n

Returns

Updates this component's layout. ...

Updates this component's layout. If this update affects this components ownerCt,\nthat component's updateLayout method will be called to perform the layout instead.\nOtherwise, just this component (and its child items) will layout.

\n

Parameters

  • options : Object (optional)

    An object with layout options.

    \n
    • defer : Boolean

      true if this layout should be deferred.

      \n
    • isRoot : Boolean

      true if this layout should be the root of the layout.

      \n
Defined By

Static Methods

( config )privatestatic
...
\n

Parameters

( members )chainableprivatestatic
...
\n

Parameters

( name, member )chainableprivatestatic
...
\n

Parameters

( members )chainablestatic
Add methods / properties to the prototype of this class. ...

Add methods / properties to the prototype of this class.

\n\n
Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.addMembers({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n
\n

Parameters

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

Add / override static properties of this class.

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

Parameters

Returns

( xtype )chainableprivatestatic
...
\n

Parameters

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

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

\n\n
Ext.define('Bank', {\n    money: '$$$',\n    printMoney: function() {\n        alert('$$$$$$$');\n    }\n});\n\nExt.define('Thief', {\n    ...\n});\n\nThief.borrow(Bank, ['money', 'printMoney']);\n\nvar steve = new Thief();\n\nalert(steve.money); // alerts '$$$'\nsteve.printMoney(); // alerts '$$$$$$$'\n
\n

Parameters

  • fromClass : Ext.Base

    The class to borrow members from

    \n
  • members : Array/String

    The names of the members to borrow

    \n

Returns

Create a new instance of this Class. ...

Create a new instance of this Class.

\n\n
Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n
\n\n

All parameters are passed to the constructor of the class.

\n

Returns

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

Create aliases for existing prototype methods. Example:

\n\n
Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -> test.method1()\n
\n

Parameters

( config )privatestatic
...
\n

Parameters

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

Get the current class' name in string format.

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

Returns

( )deprecatedstatic
Adds members to class. ...

Adds members to class.

\n
\n

This method has been deprecated since 4.1

\n

Use addMembers instead.

\n\n
\n
( name, mixinClass )privatestatic
Used internally by the mixins pre-processor ...

Used internally by the mixins pre-processor

\n

Parameters

( fn, scope )chainableprivatestatic
...
\n

Parameters

( members ) : Ext.Basechainabledeprecatedstatic
Override members of this class. ...

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

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

As of 4.1, direct use of this method is deprecated. Use Ext.define\ninstead:

\n\n
Ext.define('My.CatOverride', {\n    override: 'My.Cat',\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        this.callParent(arguments);\n\n        alert(\"Meeeeoooowwww\");\n    }\n});\n
\n\n

The above accomplishes the same result but can be managed by the Ext.Loader\nwhich can properly order the override and its target class and the build process\ncan determine whether the override is needed based on the required state of the\ntarget class (My.Cat).

\n
\n

This method has been deprecated since 4.1.0

\n

Use Ext.define instead

\n\n
\n

Parameters

  • members : Object

    The properties to add to this class. This should be\nspecified as an object literal containing one or more properties.

    \n

Returns

Defined By

Events

Ext.tab.Tab
view source
( this, eOpts )
Fired when the tab is activated. ...

Fired when the tab is activated.

\n

Parameters

Overrides: Ext.AbstractComponent.activate

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

Fires after a Component had been added to a Container.

\n

Available since: 3.4.0

\n

Parameters

Fires after the component rendering is finished. ...

Fires after the component rendering is finished.

\n\n

The afterrender event is fired after this Component has been rendered, been postprocessed by any\nafterRender method defined for the Component.

\n

Available since: 3.4.0

\n

Parameters

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

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

\n

Parameters

Ext.tab.Tab
view source
( tab, eOpts )
Fires if the user clicks on the Tab's close button, but before the close event is fired. ...

Fires if the user clicks on the Tab's close button, but before the close event is fired. Return\nfalse from any listener to stop the close event being fired

\n

Parameters

Fires before a Component has been visually deactivated. ...

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

\n

Parameters

Fires before the component is destroyed. ...

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

\n

Available since: 1.1.0

\n

Parameters

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

Fires before the component is hidden when calling the hide method. Return false from an event\nhandler to stop the hide.

\n

Available since: 1.1.0

\n

Parameters

Fires before the component is rendered. ...

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

\n

Available since: 1.1.0

\n

Parameters

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

Fires before the component is shown when calling the show method. Return false from an event\nhandler to stop the show.

\n

Available since: 1.1.0

\n

Parameters

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

Fires before the state of the object is restored. Return false from an event handler to stop the restore.

\n

Parameters

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

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

    \n
  • eOpts : Object

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

    \n\n\n\n
Fires before the state of the object is saved to the configured state provider. ...

Fires before the state of the object is saved to the configured state provider. Return false to stop the save.

\n

Parameters

Fires when this Component loses focus. ...

Fires when this Component loses focus.

\n

Parameters

( this, width, height, eOpts )
Fires one time - after the component has been laid out for the first time at its initial size. ...

Fires one time - after the component has been laid out for the first time at its initial size.

\n

Parameters

Fires when this button is clicked, before the configured handler is invoked. ...

Fires when this button is clicked, before the configured handler is invoked. Execution of the\nhandler may be vetoed by returning false to this event.

\n

Parameters

Ext.tab.Tab
view source
( tab, eOpts )
Fires to indicate that the tab is to be closed, usually because the user has clicked the close button. ...

Fires to indicate that the tab is to be closed, usually because the user has clicked the close button.

\n

Parameters

Ext.tab.Tab
view source
( this, eOpts )
Fired when the tab is deactivated. ...

Fired when the tab is deactivated.

\n

Parameters

Overrides: Ext.AbstractComponent.deactivate

Fires after the component is destroyed. ...

Fires after the component is destroyed.

\n

Available since: 1.1.0

\n

Parameters

Fires after the component is disabled. ...

Fires after the component is disabled.

\n

Available since: 1.1.0

\n

Parameters

Fires after the component is enabled. ...

Fires after the component is enabled.

\n

Available since: 1.1.0

\n

Parameters

Fires when this Component receives focus. ...

Fires when this Component receives focus.

\n

Parameters

( this, newGlyph, oldGlyph, eOpts )
Fired when the button's glyph is changed by the setGlyph method. ...

Fired when the button's glyph is changed by the setGlyph method.

\n

Parameters

Fires after the component is hidden. ...

Fires after the component is hidden. Fires after the component is hidden when calling the hide\nmethod.

\n

Available since: 1.1.0

\n

Parameters

( this, oldIcon, newIcon, eOpts )
Fired when the button's icon is changed by the setIcon or setIconCls methods. ...

Fired when the button's icon is changed by the setIcon or setIconCls methods.

\n

Parameters

If this button has a menu, this event fires when it is hidden ...

If this button has a menu, this event fires when it is hidden

\n

Parameters

If this button has a menu, this event fires when it is shown ...

If this button has a menu, this event fires when it is shown

\n

Parameters

If this button has a menu, this event fires when the mouse leaves the menu triggering element ...

If this button has a menu, this event fires when the mouse leaves the menu triggering element

\n

Parameters

If this button has a menu, this event fires when the mouse enters the menu triggering element ...

If this button has a menu, this event fires when the mouse enters the menu triggering element

\n

Parameters

Fires when the mouse exits the button ...

Fires when the mouse exits the button

\n

Parameters

Fires when the mouse hovers over the button ...

Fires when the mouse hovers over the button

\n

Parameters

Fires after the component is moved. ...

Fires after the component is moved.

\n

Parameters

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

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

\n

Available since: 3.4.0

\n

Parameters

Fires after the component markup is rendered. ...

Fires after the component markup is rendered.

\n

Available since: 1.1.0

\n

Parameters

( this, width, height, oldWidth, oldHeight, eOpts )
Fires after the component is resized. ...

Fires after the component is resized. Note that this does not fire when the component is first laid out at its initial\nsize. To hook that point in the life cycle, use the boxready event.

\n

Parameters

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

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

\n

Available since: 1.1.0

\n

Parameters

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

Fires after the state of the object is restored.

\n

Parameters

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

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

    \n
  • eOpts : Object

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

    \n\n\n\n
Fires after the state of the object is saved to the configured state provider. ...

Fires after the state of the object is saved to the configured state provider.

\n

Parameters

( this, oldText, newText, eOpts )
Fired when the button's text is changed by the setText method. ...

Fired when the button's text is changed by the setText method.

\n

Parameters

( this, pressed, eOpts )
Fires when the 'pressed' state of this button changes (only if enableToggle = true) ...

Fires when the 'pressed' state of this button changes (only if enableToggle = true)

\n

Parameters

Defined By

CSS Variables

The default height for a button's menu arrow ...

The default height for a button's menu arrow

\n

Defaults to: 12px

The default width for a button's menu arrow ...

The default width for a button's menu arrow

\n

Defaults to: 12px

The background-color for the default button UI ...

The background-color for the default button UI

\n

Defaults to: $button-default-base-color

The background-color for the default button UI when the button is disabled ...

The background-color for the default button UI when the button is disabled

\n

Defaults to: null

The background-color for the default button UI when the button is focused ...

The background-color for the default button UI when the button is focused

\n

Defaults to: $button-default-background-color-over

The background-color for the default button UI when the cursor is over the button ...

The background-color for the default button UI when the cursor is over the button

\n

Defaults to: $button-default-base-color-over

The background-color for the default button UI when the button is pressed ...

The background-color for the default button UI when the button is pressed

\n

Defaults to: $button-default-base-color-pressed

The background-gradient for the default button UI. ...

The background-gradient for the default button UI. Can be either the name of a\npredefined gradient or a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

\n

Defaults to: 'glossy-button'

The background-gradient for the default button UI when the button is disabled. ...

The background-gradient for the default button UI when the button is disabled. Can be\neither the name of a predefined gradient or a list of color stops. Used as the $type\nparameter for Global_CSS.background-gradient.

\n

Defaults to: 'glossy-button-disabled'

The background-gradient for the default button UI when the button is focused. ...

The background-gradient for the default button UI when the button is focused. Can be\neither the name of a predefined gradient or a list of color stops. Used as the $type\nparameter for Global_CSS.background-gradient.

\n

Defaults to: $button-default-background-gradient-over

The background-gradient for the default button UI when the cursor is over the button. ...

The background-gradient for the default button UI when the cursor is over the button.\nCan be either the name of a predefined gradient or a list of color stops. Used as the\n$type parameter for Global_CSS.background-gradient.

\n

Defaults to: 'glossy-button-over'

The background-gradient for the default button UI when the button is pressed. ...

The background-gradient for the default button UI when the button is pressed. Can be\neither the name of a predefined gradient or a list of color stops. Used as the $type\nparameter for Global_CSS.background-gradient.

\n

Defaults to: 'glossy-button-pressed'

The base color for the default button UI ...

The base color for the default button UI

\n

Defaults to: $base-color

The base color for the default button UI when the button is disabled ...

The base color for the default button UI when the button is disabled

\n

Defaults to: $base-color

The base color for the default button UI when the button is focused ...

The base color for the default button UI when the button is focused

\n

Defaults to: $button-default-base-color-over

The base color for the default button UI when the cursor is over the button ...

The base color for the default button UI when the cursor is over the button

\n

Defaults to: $button-default-base-color

The base color for the default button UI when the button is pressed ...

The base color for the default button UI when the button is pressed

\n

Defaults to: $button-default-base-color

The border-color for the default button UI ...

The border-color for the default button UI

\n

Defaults to: $base-color

The border-color for the default button UI when the button is disabled ...

The border-color for the default button UI when the button is disabled

\n

Defaults to: $base-color

The border-color for the default button UI when the button is focused ...

The border-color for the default button UI when the button is focused

\n

Defaults to: $base-color

The border-color for the default button UI when the cursor is over the button ...

The border-color for the default button UI when the cursor is over the button

\n

Defaults to: $base-color

The border-color for the default button UI when the button is pressed ...

The border-color for the default button UI when the button is pressed

\n

Defaults to: $base-color

The text color for the default button UI ...

The text color for the default button UI

\n

Defaults to: #000

The text color for the default button UI when the button is disabled ...

The text color for the default button UI when the button is disabled

\n

Defaults to: $button-default-color

The text color for the default button UI when the button is focused ...

The text color for the default button UI when the button is focused

\n

Defaults to: $button-default-color-over

The text color for the default button UI when the cursor is over the button ...

The text color for the default button UI when the cursor is over the button

\n

Defaults to: $button-default-color

The text color for the default button UI when the button is pressed ...

The text color for the default button UI when the button is pressed

\n

Defaults to: $button-default-color

The color of the glyph icon for the default button UI ...

The color of the glyph icon for the default button UI

\n

Defaults to: $button-default-color

The opacity of the glyph icon for the default button UI ...

The opacity of the glyph icon for the default button UI

\n

Defaults to: .5

The default space between a button's icon and text ...

The default space between a button's icon and text

\n

Defaults to: 4px

True to include different split arrows for buttons' hover state. ...

True to include different split arrows for buttons' hover state.

\n

Defaults to: false

True to use a different image url for the menu button arrows for each button UI ...

True to use a different image url for the menu button arrows for each button UI

\n

Defaults to: false

True to use a different image url for the split button arrows for each button UI ...

True to use a different image url for the split button arrows for each button UI

\n

Defaults to: false

opacity to apply to the button's inner elements (icon and text) when the buton is disabled ...

opacity to apply to the button's inner elements (icon and text) when the buton is disabled

\n

Defaults to: 1

The default height of a large scale button's menu arrow ...

The default height of a large scale button's menu arrow

\n

Defaults to: $button-arrow-height

The default width of a large scale button's menu arrow ...

The default width of a large scale button's menu arrow

\n

Defaults to: $button-arrow-width

The default border-radius for a large scale button ...

The default border-radius for a large scale button

\n

Defaults to: 3px

The default border-width for a large scale button ...

The default border-width for a large scale button

\n

Defaults to: 1px

The default font-family for a large scale button ...

The default font-family for a large scale button

\n

Defaults to: $font-family

The default font-family for a large scale button when the button is disabled ...

The default font-family for a large scale button when the button is disabled

\n

Defaults to: $button-large-font-family

The default font-family for a large scale button when the button is focused ...

The default font-family for a large scale button when the button is focused

\n

Defaults to: $button-large-font-family-over

The default font-family for a large scale button when the cursor is over the button ...

The default font-family for a large scale button when the cursor is over the button

\n

Defaults to: $button-large-font-family

The default font-family for a large scale button when the button is pressed ...

The default font-family for a large scale button when the button is pressed

\n

Defaults to: $button-large-font-family

The default font-size for a large scale button ...

The default font-size for a large scale button

\n

Defaults to: $font-size

The default font-size for a large scale button when the button is disabled ...

The default font-size for a large scale button when the button is disabled

\n

Defaults to: $button-large-font-size

The default font-size for a large scale button when the button is focused ...

The default font-size for a large scale button when the button is focused

\n

Defaults to: $button-large-font-size-over

The default font-size for a large scale button when the cursor is over the button ...

The default font-size for a large scale button when the cursor is over the button

\n

Defaults to: $button-large-font-size

The default font-size for a large scale button when the button is pressed ...

The default font-size for a large scale button when the button is pressed

\n

Defaults to: $button-large-font-size

The default font-weight for a large scale button ...

The default font-weight for a large scale button

\n

Defaults to: normal

The default font-weight for a large scale button when the button is disabled ...

The default font-weight for a large scale button when the button is disabled

\n

Defaults to: $button-large-font-weight

The default font-weight for a large scale button when the button is focused ...

The default font-weight for a large scale button when the button is focused

\n

Defaults to: $button-large-font-weight-over

The default font-weight for a large scale button when the cursor is over the button ...

The default font-weight for a large scale button when the cursor is over the button

\n

Defaults to: $button-large-font-weight

The default font-weight for a large scale button when the button is pressed ...

The default font-weight for a large scale button when the button is pressed

\n

Defaults to: $button-large-font-weight

The default icon size for a large scale button ...

The default icon size for a large scale button

\n

Defaults to: 32px

The default padding for a large scale button ...

The default padding for a large scale button

\n

Defaults to: 3px

The default height of a large scale Split Button's arrow ...

The default height of a large scale Split Button's arrow

\n

Defaults to: $button-split-height

The default width of a large scale Split Button's arrow ...

The default width of a large scale Split Button's arrow

\n

Defaults to: $button-split-width

The default horizontal padding to add to the left and right of the text element for\na large scale button ...

The default horizontal padding to add to the left and right of the text element for\na large scale button

\n

Defaults to: 3px

The default height of a medium scale button's menu arrow ...

The default height of a medium scale button's menu arrow

\n

Defaults to: $button-arrow-height

The default width of a medium scale button's menu arrow ...

The default width of a medium scale button's menu arrow

\n

Defaults to: $button-arrow-width

The default border-radius for a medium scale button ...

The default border-radius for a medium scale button

\n

Defaults to: 3px

The default border-width for a medium scale button ...

The default border-width for a medium scale button

\n

Defaults to: 1px

The default font-family for a medium scale button ...

The default font-family for a medium scale button

\n

Defaults to: $font-family

The default font-family for a medium scale button when the button is disabled ...

The default font-family for a medium scale button when the button is disabled

\n

Defaults to: $button-medium-font-family

The default font-family for a medium scale button when the button is focused ...

The default font-family for a medium scale button when the button is focused

\n

Defaults to: $button-medium-font-family-over

The default font-family for a medium scale button when the cursor is over the button ...

The default font-family for a medium scale button when the cursor is over the button

\n

Defaults to: $button-medium-font-family

The default font-family for a medium scale button when the button is pressed ...

The default font-family for a medium scale button when the button is pressed

\n

Defaults to: $button-medium-font-family

The default font-size for a medium scale button ...

The default font-size for a medium scale button

\n

Defaults to: $font-size

The default font-size for a medium scale button when the button is disabled ...

The default font-size for a medium scale button when the button is disabled

\n

Defaults to: $button-medium-font-size

The default font-size for a medium scale button when the button is focused ...

The default font-size for a medium scale button when the button is focused

\n

Defaults to: $button-medium-font-size-over

The default font-size for a medium scale button when the cursor is over the button ...

The default font-size for a medium scale button when the cursor is over the button

\n

Defaults to: $button-medium-font-size

The default font-size for a medium scale button when the button is pressed ...

The default font-size for a medium scale button when the button is pressed

\n

Defaults to: $button-medium-font-size

The default font-weight for a medium scale button ...

The default font-weight for a medium scale button

\n

Defaults to: normal

The default font-weight for a medium scale button when the button is disabled ...

The default font-weight for a medium scale button when the button is disabled

\n

Defaults to: $button-medium-font-weight

The default font-weight for a medium scale button when the button is focused ...

The default font-weight for a medium scale button when the button is focused

\n

Defaults to: $button-medium-font-weight-over

The default font-weight for a medium scale button when the cursor is over the button ...

The default font-weight for a medium scale button when the cursor is over the button

\n

Defaults to: $button-medium-font-weight

The default font-weight for a medium scale button when the button is pressed ...

The default font-weight for a medium scale button when the button is pressed

\n

Defaults to: $button-medium-font-weight

The default icon size for a medium scale button ...

The default icon size for a medium scale button

\n

Defaults to: 24px

The default padding for a medium scale button ...

The default padding for a medium scale button

\n

Defaults to: 3px

The default height of a medium scale Split Button's arrow ...

The default height of a medium scale Split Button's arrow

\n

Defaults to: $button-split-height

The default width of a medium scale Split Button's arrow ...

The default width of a medium scale Split Button's arrow

\n

Defaults to: $button-split-width

The default horizontal padding to add to the left and right of the text element for\na medium scale button ...

The default horizontal padding to add to the left and right of the text element for\na medium scale button

\n

Defaults to: 3px

opacity to apply to the button's main element when the buton is disabled ...

opacity to apply to the button's main element when the buton is disabled

\n

Defaults to: .5

The default height of a small scale button's menu arrow ...

The default height of a small scale button's menu arrow

\n

Defaults to: $button-arrow-height

The default width of a small scale button's menu arrow ...

The default width of a small scale button's menu arrow

\n

Defaults to: $button-arrow-width

The default border-radius for a small scale button ...

The default border-radius for a small scale button

\n

Defaults to: 3px

The default border-width for a small scale button ...

The default border-width for a small scale button

\n

Defaults to: 1px

The default font-family for a small scale button ...

The default font-family for a small scale button

\n

Defaults to: $font-family

The default font-family for a small scale button when the button is disabled ...

The default font-family for a small scale button when the button is disabled

\n

Defaults to: $button-small-font-family

The default font-family for a small scale button when the button is focused ...

The default font-family for a small scale button when the button is focused

\n

Defaults to: $button-small-font-family-over

The default font-family for a small scale button when the cursor is over the button ...

The default font-family for a small scale button when the cursor is over the button

\n

Defaults to: $button-small-font-family

The default font-family for a small scale button when the button is pressed ...

The default font-family for a small scale button when the button is pressed

\n

Defaults to: $button-small-font-family

The default font-size for a small scale button ...

The default font-size for a small scale button

\n

Defaults to: ceil ( $font-size * .9 )

The default font-size for a small scale button when the button is disabled ...

The default font-size for a small scale button when the button is disabled

\n

Defaults to: $button-small-font-size

The default font-size for a small scale button when the button is focused ...

The default font-size for a small scale button when the button is focused

\n

Defaults to: $button-small-font-size-over

The default font-size for a small scale button when the cursor is over the button ...

The default font-size for a small scale button when the cursor is over the button

\n

Defaults to: $button-small-font-size

The default font-size for a small scale button when the button is pressed ...

The default font-size for a small scale button when the button is pressed

\n

Defaults to: $button-small-font-size

The default font-weight for a small scale button ...

The default font-weight for a small scale button

\n

Defaults to: normal

The default font-weight for a small scale button when the button is disabled ...

The default font-weight for a small scale button when the button is disabled

\n

Defaults to: $button-small-font-weight

The default font-weight for a small scale button when the button is focused ...

The default font-weight for a small scale button when the button is focused

\n

Defaults to: $button-small-font-weight-over

The default font-weight for a small scale button when the cursor is over the button ...

The default font-weight for a small scale button when the cursor is over the button

\n

Defaults to: $button-small-font-weight

The default font-weight for a small scale button when the button is pressed ...

The default font-weight for a small scale button when the button is pressed

\n

Defaults to: $button-small-font-weight

The default icon size for a small scale button ...

The default icon size for a small scale button

\n

Defaults to: 16px

The default padding for a small scale button ...

The default padding for a small scale button

\n

Defaults to: 2px

The default height of a small scale Split Button's arrow ...

The default height of a small scale Split Button's arrow

\n

Defaults to: $button-split-height

The default width of a small scale Split Button's arrow ...

The default width of a small scale Split Button's arrow

\n

Defaults to: $button-split-width

The default horizontal padding to add to the left and right of the text element for\na small scale button ...

The default horizontal padding to add to the left and right of the text element for\na small scale button

\n

Defaults to: 4px

The default height for a Split Button's arrow ...

The default height for a Split Button's arrow

\n

Defaults to: 14px

The default width for a Split Button's arrow ...

The default width for a Split Button's arrow

\n

Defaults to: 14px

The background-color for the default-toolbar button UI ...

The background-color for the default-toolbar button UI

\n

Defaults to: $base-color

The background-color for the default-toolbar button UI when the button is disabled ...

The background-color for the default-toolbar button UI when the button is disabled

\n

Defaults to: $button-toolbar-background-color

The background-color for the default-toolbar button UI when the button is focused ...

The background-color for the default-toolbar button UI when the button is focused

\n

Defaults to: $button-toolbar-background-color-over

The background-color for the default-toolbar button UI when the cursor is over the button ...

The background-color for the default-toolbar button UI when the cursor is over the button

\n

Defaults to: $button-toolbar-background-color

The background-color for the default-toolbar button UI when the button is pressed ...

The background-color for the default-toolbar button UI when the button is pressed

\n

Defaults to: $button-toolbar-background-color

The background-gradient for the default-toolbar button UI. ...

The background-gradient for the default-toolbar button UI. Can be either the name of\na predefined gradient or a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

\n

Defaults to: 'glossy-button'

The background-gradient for the default-toolbar button UI when the button is disabled. ...

The background-gradient for the default-toolbar button UI when the button is disabled.\nCan be either the name of a predefined gradient or a list of color stops. Used as the\n$type parameter for Global_CSS.background-gradient.

\n

Defaults to: 'glossy-button-disabled'

The background-gradient for the default-toolbar button UI when the button is focused. ...

The background-gradient for the default-toolbar button UI when the button is focused.\nCan be either the name of a predefined gradient or a list of color stops. Used as the\n$type parameter for Global_CSS.background-gradient.

\n

Defaults to: $button-toolbar-background-gradient-over

The background-gradient for the default-toolbar button UI when the cursor is over the\nbutton. ...

The background-gradient for the default-toolbar button UI when the cursor is over the\nbutton. Can be either the name of a predefined gradient or a list of color stops. Used\nas the $type parameter for Global_CSS.background-gradient.

\n

Defaults to: 'glossy-button-over'

The background-gradient for the default-toolbar button UI when the button is pressed. ...

The background-gradient for the default-toolbar button UI when the button is pressed.\nCan be either the name of a predefined gradient or a list of color stops. Used as the\n$type parameter for Global_CSS.background-gradient.

\n

Defaults to: 'glossy-button-pressed'

The border-color for the default-toolbar button UI ...

The border-color for the default-toolbar button UI

\n

Defaults to: $base-color

The border-color for the default-toolbar button UI when the button is disabled ...

The border-color for the default-toolbar button UI when the button is disabled

\n

Defaults to: $button-toolbar-border-color

The border-color for the default-toolbar button UI when the button is focused ...

The border-color for the default-toolbar button UI when the button is focused

\n

Defaults to: $button-toolbar-border-color-over

The border-color for the default-toolbar button UI when the cursor is over the button ...

The border-color for the default-toolbar button UI when the cursor is over the button

\n

Defaults to: $button-toolbar-border-color

The border-color for the default-toolbar button UI when the button is pressed ...

The border-color for the default-toolbar button UI when the button is pressed

\n

Defaults to: $button-toolbar-border-color

The text color for the default-toolbar button UI ...

The text color for the default-toolbar button UI

\n

Defaults to: #000

The text color for the default-toolbar button UI when the button is disabled ...

The text color for the default-toolbar button UI when the button is disabled

\n

Defaults to: $button-toolbar-color

The text color for the default-toolbar button UI when the button is focused ...

The text color for the default-toolbar button UI when the button is focused

\n

Defaults to: $button-toolbar-color-over

The text color for the default-toolbar button UI when the cursor is over the button ...

The text color for the default-toolbar button UI when the cursor is over the button

\n

Defaults to: $button-toolbar-color

The text color for the default-toolbar button UI when the button is pressed ...

The text color for the default-toolbar button UI when the button is pressed

\n

Defaults to: $button-toolbar-color

The color of the glyph icon for the default-toolbar button UI ...

The color of the glyph icon for the default-toolbar button UI

\n

Defaults to: $button-toolbar-color

The opacity of the glyph icon for the default-toolbar button UI ...

The opacity of the glyph icon for the default-toolbar button UI

\n

Defaults to: .5

True to include \"noline\" split arrows for toolbar buttons in their default state. ...

True to include \"noline\" split arrows for toolbar buttons in their default state.

\n

Defaults to: false

opacity to apply to the toolbar button's inner elements (icon and text) when the buton is disabled ...

opacity to apply to the toolbar button's inner elements (icon and text) when the buton is disabled

\n

Defaults to: 1

opacity to apply to the toolbar button's main element when the buton is disabled ...

opacity to apply to the toolbar button's main element when the buton is disabled

\n

Defaults to: .5

True to include the \"default\" button UI for \"large\" scale buttons ...

True to include the \"default\" button UI for \"large\" scale buttons

\n

Defaults to: $include-button-default-ui

True to include the \"default\" button UI for \"medium\" scale buttons ...

True to include the \"default\" button UI for \"medium\" scale buttons

\n

Defaults to: $include-button-default-ui

True to include the \"default\" button UI for \"small\" scale buttons ...

True to include the \"default\" button UI for \"small\" scale buttons

\n

Defaults to: $include-button-default-ui

True to include the \"default-toolbar\" button UI for \"large\" scale buttons ...

True to include the \"default-toolbar\" button UI for \"large\" scale buttons

\n

Defaults to: $include-button-default-toolbar-ui

True to include the \"default-toolbar\" button UI for \"medium\" scale buttons ...

True to include the \"default-toolbar\" button UI for \"medium\" scale buttons

\n

Defaults to: $include-button-default-toolbar-ui

True to include the \"default-toolbar\" button UI for \"small\" scale buttons ...

True to include the \"default-toolbar\" button UI for \"small\" scale buttons

\n

Defaults to: $include-button-default-toolbar-ui

True to include the \"default-toolbar\" button UI ...

True to include the \"default-toolbar\" button UI

\n

Defaults to: $include-default-uis

True to include the \"default\" button UI ...

True to include the \"default\" button UI

\n

Defaults to: $include-default-uis

True to include the \"default\" tab UI ...

True to include the \"default\" tab UI

\n

Defaults to: $include-default-uis

Ext.tab.Tab
view source
: string/list
The background-gradient for Tabs. ...

The background-gradient for Tabs. Can be either the name of a predefined gradient\nor a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

\n

Defaults to: 'tab'

The background-gradient for the active Tab. ...

The background-gradient for the active Tab. Can be either the name of a predefined gradient\nor a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

\n

Defaults to: 'tab-active'

The background-gradient for disabled Tabs. ...

The background-gradient for disabled Tabs. Can be either the name of a predefined gradient\nor a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

\n

Defaults to: 'tab-disabled'

The background-gradient for hovered Tabs. ...

The background-gradient for hovered Tabs. Can be either the name of a predefined gradient\nor a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

\n

Defaults to: 'tab-over'

Ext.tab.Tab
view source
: color
The base color of Tabs ...

The base color of Tabs

\n

Defaults to: $base-color

The base color of the active Tabs ...

The base color of the active Tabs

\n

Defaults to: $tab-base-color

The base color of disabled Tabs ...

The base color of disabled Tabs

\n

Defaults to: $tab-base-color

The base color of hovered Tabs ...

The base color of hovered Tabs

\n

Defaults to: $tab-base-color

Ext.tab.Tab
view source
: color
The border-color of Tabs ...

The border-color of Tabs

\n

Defaults to: $base-color

The border-color of the active Tab ...

The border-color of the active Tab

\n

Defaults to: $tab-border-color

The border-color of disabled Tabs ...

The border-color of disabled Tabs

\n

Defaults to: $tab-border-color

The border-color of hovered Tabs ...

The border-color of hovered Tabs

\n

Defaults to: $tab-border-color

The border-radius of Tabs ...

The border-radius of Tabs

\n

Defaults to: 4px 4px 0 0

Ext.tab.Tab
view source
: number
The border-width of Tabs ...

The border-width of Tabs

\n

Defaults to: 1px

The height of the Tab close icon ...

The height of the Tab close icon

\n

Defaults to: 11px

True to change the x background-postition of the close icon background image on hover\nto allow for a horizontally ali...

True to change the x background-postition of the close icon background image on hover\nto allow for a horizontally aligned background image sprite

\n

Defaults to: false

True to change the x background-postition of the close icon background image on click\nto allow for a horizontally ali...

True to change the x background-postition of the close icon background image on click\nto allow for a horizontally aligned background image sprite

\n

Defaults to: false

The opacity of the Tab close icon ...

The opacity of the Tab close icon

\n

Defaults to: 1

The opacity of the Tab close icon when the Tab is disabled ...

The opacity of the Tab close icon when the Tab is disabled

\n

Defaults to: 1

The opacity of the Tab close icon when hovered ...

The opacity of the Tab close icon when hovered

\n

Defaults to: 1

The distance to offset the Tab close icon from the right of the tab ...

The distance to offset the Tab close icon from the right of the tab

\n

Defaults to: 2px

the space in between the text and the close button ...

the space in between the text and the close button

\n

Defaults to: 3px

The distance to offset the Tab close icon from the top of the tab ...

The distance to offset the Tab close icon from the top of the tab

\n

Defaults to: 2px

The width of the Tab close icon ...

The width of the Tab close icon

\n

Defaults to: 11px

Ext.tab.Tab
view source
: color
The text color of Tabs ...

The text color of Tabs

\n

Defaults to: $color

Ext.tab.Tab
view source
: color
The text color of the active Tab ...

The text color of the active Tab

\n

Defaults to: $tab-color

The text color of disabled Tabs ...

The text color of disabled Tabs

\n

Defaults to: $tab-color

Ext.tab.Tab
view source
: color
The text color of hovered Tabs ...

The text color of hovered Tabs

\n

Defaults to: $tab-color

Ext.tab.Tab
view source
: string
The Tab cursor ...

The Tab cursor

\n

Defaults to: pointer

The cursor of disabled Tabs ...

The cursor of disabled Tabs

\n

Defaults to: default

Ext.tab.Tab
view source
: string
The font-family of Tabs ...

The font-family of Tabs

\n

Defaults to: $font-family

The font-family of the active Tab ...

The font-family of the active Tab

\n

Defaults to: $tab-font-family

The font-family of disabled Tabs ...

The font-family of disabled Tabs

\n

Defaults to: $tab-font-family

The font-family of hovered Tabs ...

The font-family of hovered Tabs

\n

Defaults to: $tab-font-family

Ext.tab.Tab
view source
: number
The font-size of Tabs ...

The font-size of Tabs

\n

Defaults to: $font-size

The font-size of the active Tab ...

The font-size of the active Tab

\n

Defaults to: $tab-font-size

The font-size of disabled Tabs ...

The font-size of disabled Tabs

\n

Defaults to: $tab-font-size

Ext.tab.Tab
view source
: number
The font-size of hovered Tabs ...

The font-size of hovered Tabs

\n

Defaults to: $tab-font-size

Ext.tab.Tab
view source
: string
The font-weight of Tabs ...

The font-weight of Tabs

\n

Defaults to: bold

The font-weight of the active Tab ...

The font-weight of the active Tab

\n

Defaults to: $tab-font-weight

The font-weight of disabled Tabs ...

The font-weight of disabled Tabs

\n

Defaults to: $tab-font-weight

The font-weight of hovered Tabs ...

The font-weight of hovered Tabs

\n

Defaults to: $tab-font-weight

Ext.tab.Tab
view source
: color
The color of Tab glyph icons ...

The color of Tab glyph icons

\n

Defaults to: $tab-color

The color of a Tab glyph icon when the Tab is active ...

The color of a Tab glyph icon when the Tab is active

\n

Defaults to: $tab-color-active

The color of a Tab glyph icon when the Tab is disabled ...

The color of a Tab glyph icon when the Tab is disabled

\n

Defaults to: $tab-color-disabled

The color of a Tab glyph icon when the Tab is hovered ...

The color of a Tab glyph icon when the Tab is hovered

\n

Defaults to: $tab-color-over

Ext.tab.Tab
view source
: number
The opacity of a Tab glyph icon ...

The opacity of a Tab glyph icon

\n

Defaults to: .5

The opacity of a Tab glyph icon when the Tab is disabled ...

The opacity of a Tab glyph icon when the Tab is disabled

\n

Defaults to: .3

The background-position of Tab icons ...

The background-position of Tab icons

\n

Defaults to: center center

Ext.tab.Tab
view source
: number
The height of Tab icons ...

The height of Tab icons

\n

Defaults to: 16px

opacity to apply to the tab's icon element when the tab is disabled ...

opacity to apply to the tab's icon element when the tab is disabled

\n

Defaults to: .5

Ext.tab.Tab
view source
: number
The space between the Tab icon and the Tab text ...

The space between the Tab icon and the Tab text

\n

Defaults to: 4px

Ext.tab.Tab
view source
: number
The width of Tab icons ...

The width of Tab icons

\n

Defaults to: 16px

The inner border-color of Tabs ...

The inner border-color of Tabs

\n

Defaults to: #fff

Ext.tab.Tab
view source
: number/list
The inner border-width of Tabs ...

The inner border-width of Tabs

\n

Defaults to: 1px 1px 0

Experimental - Has issues with IE\nThe direction to rotate the contents of a left-aligned tab. ...

Experimental - Has issues with IE\nThe direction to rotate the contents of a left-aligned tab. right to rotate\nclockwise or left to rotate counterclockwise. Defaults to left.

\n

Defaults to: 'left'

Ext.tab.Tab
view source
: number
The line-height of Tabs ...

The line-height of Tabs

\n

Defaults to: 13px

Ext.tab.Tab
view source
: number/list
The margin of Tabs. ...

The margin of Tabs. Typically used to add horizontal space between the tabs.

\n

Defaults to: 0 0 0 2px

opacity to apply to the tab's main element when the tab is disabled ...

opacity to apply to the tab's main element when the tab is disabled

\n

Defaults to: 1

Ext.tab.Tab
view source
: number/list
The padding of Tabs ...

The padding of Tabs

\n

Defaults to: 3px 9px

Experimental - Has issues with IE\nThe direction to rotate the contents of a right-aligned tab. ...

Experimental - Has issues with IE\nThe direction to rotate the contents of a right-aligned tab. right to rotate\nclockwise or left to rotate counterclockwise. Defaults to right.

\n

Defaults to: 'right'

opacity to apply to the tab's text element when the tab is disabled ...

opacity to apply to the tab's text element when the tab is disabled

\n

Defaults to: .3

Ext.tab.Tab
view source
: number/list
The padding of the Tab's text element ...

The padding of the Tab's text element

\n

Defaults to: 0

Defined By

CSS Mixins

( $ui, [$border-radius], [$border-width], $border-color, $border-color-over, $border-color-focus, $border-color-pressed, $border-color-disabled, $padding, $text-padding, $background-color, $background-color-over, $background-color-focus, $background-color-pressed, $background-color-disabled, $background-gradient, $background-gradient-over, $background-gradient-focus, $background-gradient-pressed, $background-gradient-disabled, $color, $color-over, $color-focus, $color-pressed, $color-disabled, $font-size, $font-size-over, $font-size-focus, $font-size-pressed, $font-size-disabled, $font-weight, $font-weight-over, $font-weight-focus, $font-weight-pressed, $font-weight-disabled, $font-family, $font-family-over, $font-family-focus, $font-family-pressed, $font-family-disabled, $icon-size, $glyph-color, [$glyph-opacity], $arrow-width, $arrow-height, $split-width, $split-height, [$include-ui-menu-arrows], [$include-ui-split-arrows], [$include-split-noline-arrows], [$include-split-over-arrows], [$opacity-disabled], [$inner-opacity-disabled] )
Creates a visual theme for a Button ...

Creates a visual theme for a Button

\n
  • $ui : string

    The name of the UI being created. Can not included spaces or special punctuation\n(used in CSS class names).

    \n
  • $border-radius : number (optional)

    The border-radius of the button

    \n

    Defaults to: 0px

  • $border-width : number (optional)

    The border-width of the button

    \n

    Defaults to: 0px

  • $border-color : color

    The border-color of the button

    \n
  • $border-color-over : color

    The border-color of the button when the cursor is over the button

    \n
  • $border-color-focus : color

    The border-color of the button when focused

    \n
  • $border-color-pressed : color

    The border-color of the button when pressed

    \n
  • $border-color-disabled : color

    The border-color of the button when disabled

    \n
  • $padding : number

    The amount of padding inside the border of the button on all sides

    \n
  • $text-padding : number

    The amount of horizontal space to add to the left and right of the button text

    \n
  • $background-color : color

    The background-color of the button

    \n
  • $background-color-over : color

    The background-color of the button when the cursor is over the button

    \n
  • $background-color-focus : color

    The background-color of the button when focused

    \n
  • $background-color-pressed : color

    The background-color of the button when pressed

    \n
  • $background-color-disabled : color

    The background-color of the button when disabled

    \n
  • $background-gradient : string/list

    The background-gradient for the button. Can be either the name of a predefined gradient\nor a list of color stops. Used as the $type parameter for Global_CSS.background-gradient.

    \n
  • $background-gradient-over : string

    The background-gradient to use when the cursor is over the button. Can be either the\nname of a predefined gradient or a list of color stops. Used as the $type parameter\nfor Global_CSS.background-gradient.

    \n
  • $background-gradient-focus : string

    The background-gradient to use when the the button is focused. Can be either the name\nof a predefined gradient or a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

    \n
  • $background-gradient-pressed : string

    The background-gradient to use when the the button is pressed. Can be either the name\nof a predefined gradient or a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

    \n
  • $background-gradient-disabled : string

    The background-gradient to use when the the button is disabled. Can be either the name\nof a predefined gradient or a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

    \n
  • $color : color

    The text color of the button

    \n
  • $color-over : color

    The text color of the button when the cursor is over the button

    \n
  • $color-focus : color

    The text color of the button when the button is focused

    \n
  • $color-pressed : color

    The text color of the button when the button is pressed

    \n
  • $color-disabled : color

    The text color of the button when the button is disabled

    \n
  • $font-size : number

    The font-size of the button

    \n
  • $font-size-over : number

    The font-size of the button when the cursor is over the button

    \n
  • $font-size-focus : number

    The font-size of the button when the button is focused

    \n
  • $font-size-pressed : number

    The font-size of the button when the button is pressed

    \n
  • $font-size-disabled : number

    The font-size of the button when the button is disabled

    \n
  • $font-weight : string

    The font-weight of the button

    \n
  • $font-weight-over : string

    The font-weight of the button when the cursor is over the button

    \n
  • $font-weight-focus : string

    The font-weight of the button when the button is focused

    \n
  • $font-weight-pressed : string

    The font-weight of the button when the button is pressed

    \n
  • $font-weight-disabled : string

    The font-weight of the button when the button is disabled

    \n
  • $font-family : string

    The font-family of the button

    \n
  • $font-family-over : string

    The font-family of the button when the cursor is over the button

    \n
  • $font-family-focus : string

    The font-family of the button when the button is focused

    \n
  • $font-family-pressed : string

    The font-family of the button when the button is pressed

    \n
  • $font-family-disabled : string

    The font-family of the button when the button is disabled

    \n
  • $icon-size : number

    The size of the button icon

    \n
  • $glyph-color : color

    The color of the button's glyph icon

    \n
  • $glyph-opacity : number (optional)

    The opacity of the button's glyph icon

    \n

    Defaults to: 1

  • $arrow-width : number

    The width of the button's menu arrow

    \n
  • $arrow-height : number

    The height of the button's menu arrow

    \n
  • $split-width : number

    The width of a Split Button's arrow

    \n
  • $split-height : number

    The height of a Split Button's arrow

    \n
  • $include-ui-menu-arrows : boolean (optional)

    True to include the UI name in the file name of the menu\narrow icon. Set this to false to share the same arrow bewteen multiple UIs.

    \n

    Defaults to: $button-include-ui-menu-arrows

  • $include-ui-split-arrows : boolean (optional)

    True to include the UI name in the file name of the Split Button's\narrow icon. Set this to false to share the same arrow bewteen multiple UIs.

    \n

    Defaults to: $button-include-ui-split-arrows

  • $include-split-noline-arrows : boolean (optional)

    True to add a \"-noline\" suffix to the file name of the Split Button's\narrow icon. Used for hiding the split line when toolbar buttons are in their default\nstate.

    \n

    Defaults to: false

  • $include-split-over-arrows : boolean (optional)

    True to use a separate icon for Split Buttons when the cursor\nis over the button. The over icon file name will have a \"-o\" suffix

    \n

    Defaults to: $button-include-split-over-arrows

  • $opacity-disabled : number (optional)

    The opacity of the button when it is disabled

    \n

    Defaults to: 1

  • $inner-opacity-disabled : number (optional)

    The opacity of the button's text and icon elements when when the button is disabled

    \n

    Defaults to: 1

Ext.tab.Tab
view source
( $ui, [$ui-background-color], [$ui-background-color-over], [$ui-background-color-active], [$ui-background-color-disabled], [$ui-border-radius], [$ui-border-width], [$ui-margin], [$ui-padding], [$ui-text-padding], [$ui-border-color], [$ui-border-color-over], [$ui-border-color-active], [$ui-border-color-disabled], [$ui-cursor], [$ui-cursor-disabled], [$ui-font-size], [$ui-font-size-over], [$ui-font-size-active], [$ui-font-size-disabled], [$ui-font-weight], [$ui-font-weight-over], [$ui-font-weight-active], [$ui-font-weight-disabled], [$ui-font-family], [$ui-font-family-over], [$ui-font-family-active], [$ui-font-family-disabled], [$ui-line-height], [$ui-color], [$ui-color-over], [$ui-color-active], [$ui-color-disabled], [$ui-background-gradient], [$ui-background-gradient-over], [$ui-background-gradient-active], [$ui-background-gradient-disabled], [$ui-inner-border-width], [$ui-inner-border-color], [$ui-icon-width], [$ui-icon-height], [$ui-icon-spacing], [$ui-icon-background-position], [$ui-glyph-color], [$ui-glyph-color-over], [$ui-glyph-color-active], [$ui-glyph-color-disabled], [$ui-glyph-opacity], [$ui-glyph-opacity-disabled], [$ui-opacity-disabled], [$ui-text-opacity-disabled], [$ui-icon-opacity-disabled], [$ui-closable-icon-width], [$ui-closable-icon-height], [$ui-closable-icon-top], [$ui-closable-icon-right], [$ui-closable-icon-spacing], [$ui-border-bottom-color] )
Creates a visual theme for a Tab ...

Creates a visual theme for a Tab

\n
  • $ui : string

    The name of the UI being created. Can not included spaces or special punctuation\n(used in CSS class names).

    \n
  • $ui-background-color : color (optional)

    The background-color of Tabs

    \n

    Defaults to: $tab-base-color

  • $ui-background-color-over : color (optional)

    The background-color of hovered Tabs

    \n

    Defaults to: $tab-base-color-over

  • $ui-background-color-active : color (optional)

    The background-color of the active Tab

    \n

    Defaults to: $tab-base-color-active

  • $ui-background-color-disabled : color (optional)

    The background-color of disabled Tabs

    \n

    Defaults to: $tab-base-color-disabled

  • $ui-border-radius : list (optional)

    The border-radius of Tabs

    \n

    Defaults to: $tab-border-radius

  • $ui-border-width : number (optional)

    The border-width of Tabs

    \n

    Defaults to: $tab-border-width

  • $ui-margin : number/list (optional)

    The border-width of Tabs

    \n

    Defaults to: $tab-margin

  • $ui-padding : number/list (optional)

    The padding of Tabs

    \n

    Defaults to: $tab-padding

  • $ui-text-padding : number/list (optional)

    The padding of the Tab's text element

    \n

    Defaults to: $tab-text-padding

  • $ui-border-color : color (optional)

    The border-color of Tabs

    \n

    Defaults to: $tab-border-color

  • $ui-border-color-over : color (optional)

    The border-color of hovered Tabs

    \n

    Defaults to: $tab-border-color-over

  • $ui-border-color-active : color (optional)

    The border-color of the active Tab

    \n

    Defaults to: $tab-border-color-active

  • $ui-border-color-disabled : color (optional)

    The border-color of disabled Tabs

    \n

    Defaults to: $tab-border-color-disabled

  • $ui-cursor : string (optional)

    The Tab cursor

    \n

    Defaults to: $tab-cursor

  • $ui-cursor-disabled : string (optional)

    The cursor of disabled Tabs

    \n

    Defaults to: $tab-cursor-disabled

  • $ui-font-size : number (optional)

    The font-size of Tabs

    \n

    Defaults to: $tab-font-size

  • $ui-font-size-over : number (optional)

    The font-size of hovered Tabs

    \n

    Defaults to: $tab-font-size-over

  • $ui-font-size-active : number (optional)

    The font-size of the active Tab

    \n

    Defaults to: $tab-font-size-active

  • $ui-font-size-disabled : number (optional)

    The font-size of disabled Tabs

    \n

    Defaults to: $tab-font-size-disabled

  • $ui-font-weight : string (optional)

    The font-weight of Tabs

    \n

    Defaults to: $tab-font-weight

  • $ui-font-weight-over : string (optional)

    The font-weight of hovered Tabs

    \n

    Defaults to: $tab-font-weight-over

  • $ui-font-weight-active : string (optional)

    The font-weight of the active Tab

    \n

    Defaults to: $tab-font-weight-active

  • $ui-font-weight-disabled : string (optional)

    The font-weight of disabled Tabs

    \n

    Defaults to: $tab-font-weight-disabled

  • $ui-font-family : string (optional)

    The font-family of Tabs

    \n

    Defaults to: $tab-font-family

  • $ui-font-family-over : string (optional)

    The font-family of hovered Tabs

    \n

    Defaults to: $tab-font-family-over

  • $ui-font-family-active : string (optional)

    The font-family of the active Tab

    \n

    Defaults to: $tab-font-family-active

  • $ui-font-family-disabled : string (optional)

    The font-family of disabled Tabs

    \n

    Defaults to: $tab-font-family-disabled

  • $ui-line-height : number (optional)

    The line-height of Tabs

    \n

    Defaults to: $tab-line-height

  • $ui-color : color (optional)

    The text color of Tabs

    \n

    Defaults to: $tab-color

  • $ui-color-over : color (optional)

    The text color of hovered Tabs

    \n

    Defaults to: $tab-color-over

  • $ui-color-active : color (optional)

    The text color of the active Tab

    \n

    Defaults to: $tab-color-active

  • $ui-color-disabled : color (optional)

    The text color of disabled Tabs

    \n

    Defaults to: $tab-color-disabled

  • $ui-background-gradient : string/list (optional)

    The background-gradient for Tabs. Can be either the name of a predefined gradient\nor a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

    \n

    Defaults to: $tab-background-gradient

  • $ui-background-gradient-over : string/list (optional)

    The background-gradient for hovered Tabs. Can be either the name of a predefined gradient\nor a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

    \n

    Defaults to: $tab-background-gradient-over

  • $ui-background-gradient-active : string/list (optional)

    The background-gradient for the active Tab. Can be either the name of a predefined gradient\nor a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

    \n

    Defaults to: $tab-background-gradient-active

  • $ui-background-gradient-disabled : string/list (optional)

    The background-gradient for disabled Tabs. Can be either the name of a predefined gradient\nor a list of color stops. Used as the $type parameter for\nGlobal_CSS.background-gradient.

    \n

    Defaults to: $tab-background-gradient-disabled

  • $ui-inner-border-width : number (optional)

    The inner border-width of Tabs

    \n

    Defaults to: $tab-inner-border-width

  • $ui-inner-border-color : color (optional)

    The inner border-color of Tabs

    \n

    Defaults to: $tab-inner-border-color

  • $ui-icon-width : number (optional)

    The width of the Tab close icon

    \n

    Defaults to: $tab-icon-width

  • $ui-icon-height : number (optional)

    The height of the Tab close icon

    \n

    Defaults to: $tab-icon-height

  • $ui-icon-spacing : number (optional)

    the space in between the text and the close button

    \n

    Defaults to: $tab-icon-spacing

  • $ui-icon-background-position : list (optional)

    The background-position of Tab icons

    \n

    Defaults to: $tab-icon-background-position

  • $ui-glyph-color : color (optional)

    The color of Tab glyph icons

    \n

    Defaults to: $tab-glyph-color

  • $ui-glyph-color-over : color (optional)

    The color of a Tab glyph icon when the Tab is hovered

    \n

    Defaults to: $tab-glyph-color-over

  • $ui-glyph-color-active : color (optional)

    The color of a Tab glyph icon when the Tab is active

    \n

    Defaults to: $tab-glyph-color-active

  • $ui-glyph-color-disabled : color (optional)

    The color of a Tab glyph icon when the Tab is disabled

    \n

    Defaults to: $tab-glyph-color-disabled

  • $ui-glyph-opacity : number (optional)

    The opacity of a Tab glyph icon

    \n

    Defaults to: $tab-glyph-opacity

  • $ui-glyph-opacity-disabled : number (optional)

    The opacity of a Tab glyph icon when the Tab is disabled

    \n

    Defaults to: $tab-glyph-opacity-disabled

  • $ui-opacity-disabled : number (optional)

    opacity to apply to the tab's main element when the tab is disabled

    \n

    Defaults to: $tab-opacity-disabled

  • $ui-text-opacity-disabled : number (optional)

    opacity to apply to the tab's text element when the tab is disabled

    \n

    Defaults to: $tab-text-opacity-disabled

  • $ui-icon-opacity-disabled : number (optional)

    opacity to apply to the tab's icon element when the tab is disabled

    \n

    Defaults to: $tab-icon-opacity-disabled

  • $ui-closable-icon-width : number (optional)

    The width of the Tab close icon

    \n

    Defaults to: $tab-closable-icon-width

  • $ui-closable-icon-height : number (optional)

    The height of the Tab close icon

    \n

    Defaults to: $tab-closable-icon-height

  • $ui-closable-icon-top : number (optional)

    The distance to offset the Tab close icon from the top of the tab

    \n

    Defaults to: $tab-closable-icon-top

  • $ui-closable-icon-right : number (optional)

    The distance to offset the Tab close icon from the right of the tab

    \n

    Defaults to: $tab-closable-icon-right

  • $ui-closable-icon-spacing : number (optional)

    The space in between the text and the close button

    \n

    Defaults to: $tab-closable-icon-spacing

  • $ui-border-bottom-color : color (optional)

    The bottom border color of inactive tabs.

    \n

    Defaults to: $tabbar-strip-border-color

","superclasses":["Ext.Base","Ext.AbstractComponent","Ext.Component","Ext.button.Button"],"meta":{"author":["Ed Spencer"]},"code_type":"ext_define","requires":["Ext.util.KeyNav"],"html_meta":{"author":null},"statics":{"property":[{"tagname":"property","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"$onExtended","id":"static-property-S-onExtended"}],"cfg":[],"css_var":[],"method":[{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"addConfig","id":"static-method-addConfig"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addInheritableStatics","id":"static-method-addInheritableStatics"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addMember","id":"static-method-addMember"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true},"name":"addMembers","id":"static-method-addMembers"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true},"name":"addStatics","id":"static-method-addStatics"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addXtype","id":"static-method-addXtype"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"borrow","id":"static-method-borrow"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"create","id":"static-method-create"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"createAlias","id":"static-method-createAlias"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"extend","id":"static-method-extend"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"getName","id":"static-method-getName"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"deprecated":{"text":"Use {@link #addMembers} instead.","version":"4.1"}},"name":"implement","id":"static-method-implement"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"mixin","id":"static-method-mixin"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"onExtended","id":"static-method-onExtended"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"markdown":true,"deprecated":{"text":"Use {@link Ext#define Ext.define} instead","version":"4.1.0"}},"name":"override","id":"static-method-override"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"triggerExtended","id":"static-method-triggerExtended"}],"event":[],"css_mixin":[]},"files":[{"href":"Tab.html#Ext-tab-Tab","filename":"Tab.js"},{"href":"Tab.scss3.html#Ext-tab-Tab","filename":"Tab.scss"}],"linenr":1,"members":{"property":[{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"$className","id":"property-S-className"},{"tagname":"property","owner":"Ext.util.Positionable","meta":{"private":true},"name":"_alignRe","id":"property-_alignRe"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"_isLayoutRoot","id":"property-_isLayoutRoot"},{"tagname":"property","owner":"Ext.util.Positionable","meta":{"private":true},"name":"_positionTopLeft","id":"property-_positionTopLeft"},{"tagname":"property","owner":"Ext.button.Button","meta":{"private":true},"name":"_triggerRegion","id":"property-_triggerRegion"},{"tagname":"property","owner":"Ext.tab.Tab","meta":{"readonly":true},"name":"active","id":"property-active"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"allowDomMove","id":"property-allowDomMove"},{"tagname":"property","owner":"Ext.button.Button","meta":{"private":true},"name":"allowedScales","id":"property-allowedScales"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"autoGenId","id":"property-autoGenId"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"borderBoxCls","id":"property-borderBoxCls"},{"tagname":"property","owner":"Ext.Component","meta":{"private":true},"name":"bubbleEvents","id":"property-bubbleEvents"},{"tagname":"property","owner":"Ext.util.ElementContainer","meta":{"private":true},"name":"childEls","id":"property-childEls"},{"tagname":"property","owner":"Ext.tab.Tab","meta":{},"name":"closable","id":"property-closable"},{"tagname":"property","owner":"Ext.tab.Tab","meta":{"private":true},"name":"closeElOverCls","id":"property-closeElOverCls"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"componentLayoutCounter","id":"property-componentLayoutCounter"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"configMap","id":"property-configMap"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{},"name":"contentPaddingProperty","id":"property-contentPaddingProperty"},{"tagname":"property","owner":"Ext.util.Positionable","meta":{"private":true},"name":"convertPositionSpec","id":"property-convertPositionSpec"},{"tagname":"property","owner":"Ext.Component","meta":{"private":true},"name":"defaultComponentLayoutType","id":"property-defaultComponentLayoutType"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"deferLayouts","id":"property-deferLayouts"},{"tagname":"property","owner":"Ext.button.Button","meta":{"readonly":true},"name":"disabled","id":"property-disabled"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"readonly":true},"name":"draggable","id":"property-draggable"},{"tagname":"property","owner":"Ext.util.Observable","meta":{"private":true},"name":"eventsSuspended","id":"property-eventsSuspended"},{"tagname":"property","owner":"Ext.Component","meta":{"readonly":true},"name":"floatParent","id":"property-floatParent"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameCls","id":"property-frameCls"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameElNames","id":"property-frameElNames"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"frameElementsArray","id":"property-frameElementsArray"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameIdRegex","id":"property-frameIdRegex"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameInfoCache","id":"property-frameInfoCache"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"readonly":true},"name":"frameSize","id":"property-frameSize"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameTableTpl","id":"property-frameTableTpl"},{"tagname":"property","owner":"Ext.util.Renderable","meta":{"private":true},"name":"frameTpl","id":"property-frameTpl"},{"tagname":"property","owner":"Ext.util.Observable","meta":{"readonly":true},"name":"hasListeners","id":"property-hasListeners"},{"tagname":"property","owner":"Ext.button.Button","meta":{"readonly":true},"name":"hidden","id":"property-hidden"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"horizontalPosProp","id":"property-horizontalPosProp"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"initConfigList","id":"property-initConfigList"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"initConfigMap","id":"property-initConfigMap"},{"tagname":"property","owner":"Ext.button.Button","meta":{"private":true},"name":"isAction","id":"property-isAction"},{"tagname":"property","owner":"Ext.util.Animate","meta":{"private":true},"name":"isAnimate","id":"property-isAnimate"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{},"name":"isComponent","id":"property-isComponent"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"isInstance","id":"property-isInstance"},{"tagname":"property","owner":"Ext.util.Observable","meta":{},"name":"isObservable","id":"property-isObservable"},{"tagname":"property","owner":"Ext.Queryable","meta":{"private":true},"name":"isQueryable","id":"property-isQueryable"},{"tagname":"property","owner":"Ext.tab.Tab","meta":{},"name":"isTab","id":"property-isTab"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"layoutSuspendCount","id":"property-layoutSuspendCount"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{},"name":"maskOnDisable","id":"property-maskOnDisable"},{"tagname":"property","owner":"Ext.button.Button","meta":{},"name":"menu","id":"property-menu"},{"tagname":"property","owner":"Ext.Component","meta":{"private":true},"name":"offsetsCls","id":"property-offsetsCls"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0","readonly":true},"name":"ownerCt","id":"property-ownerCt"},{"tagname":"property","owner":"Ext.tab.Tab","meta":{"private":true},"name":"position","id":"property-position"},{"tagname":"property","owner":"Ext.button.Button","meta":{"readonly":true},"name":"pressed","id":"property-pressed"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0","readonly":true},"name":"rendered","id":"property-rendered"},{"tagname":"property","owner":"Ext.Component","meta":{"readonly":true},"name":"scrollFlags","id":"property-scrollFlags"},{"tagname":"property","owner":"Ext.Base","meta":{"protected":true},"name":"self","id":"property-self"},{"tagname":"property","owner":"Ext.button.Button","meta":{},"name":"template","id":"property-template"},{"tagname":"property","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"weight","id":"property-weight"},{"tagname":"property","owner":"Ext.Component","meta":{"readonly":true},"name":"zIndexManager","id":"property-zIndexManager"},{"tagname":"property","owner":"Ext.Component","meta":{"readonly":true},"name":"zIndexParent","id":"property-zIndexParent"}],"cfg":[{"tagname":"cfg","owner":"Ext.tab.Tab","meta":{},"name":"activeCls","id":"cfg-activeCls"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"allowDepress","id":"cfg-allowDepress"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"arrowAlign","id":"cfg-arrowAlign"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"arrowCls","id":"cfg-arrowCls"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"autoEl","id":"cfg-autoEl"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"deprecated":{"text":"Use {@link #loader} config instead.","version":"4.1.1"}},"name":"autoLoad","id":"cfg-autoLoad"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"autoRender","id":"cfg-autoRender"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"autoScroll","id":"cfg-autoScroll"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"autoShow","id":"cfg-autoShow"},{"tagname":"cfg","owner":"Ext.tab.Tab","meta":{},"name":"baseCls","id":"cfg-baseCls"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"baseParams","id":"cfg-baseParams"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"border","id":"cfg-border"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"childEls","id":"cfg-childEls"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"clickEvent","id":"cfg-clickEvent"},{"tagname":"cfg","owner":"Ext.tab.Tab","meta":{},"name":"closable","id":"cfg-closable"},{"tagname":"cfg","owner":"Ext.tab.Tab","meta":{},"name":"closableCls","id":"cfg-closableCls"},{"tagname":"cfg","owner":"Ext.tab.Tab","meta":{},"name":"closeText","id":"cfg-closeText"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"cls","id":"cfg-cls"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"columnWidth","id":"cfg-columnWidth"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"componentCls","id":"cfg-componentCls"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"componentLayout","id":"cfg-componentLayout"},{"tagname":"cfg","owner":"Ext.util.Floating","meta":{},"name":"constrain","id":"cfg-constrain"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"constrainTo","id":"cfg-constrainTo"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"constraintInsets","id":"cfg-constraintInsets"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"contentEl","id":"cfg-contentEl"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"data","id":"cfg-data"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"defaultAlign","id":"cfg-defaultAlign"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"destroyMenu","id":"cfg-destroyMenu"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"disabled","id":"cfg-disabled"},{"tagname":"cfg","owner":"Ext.tab.Tab","meta":{},"name":"disabledCls","id":"cfg-disabledCls"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"draggable","id":"cfg-draggable"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"enableToggle","id":"cfg-enableToggle"},{"tagname":"cfg","owner":"Ext.util.Floating","meta":{},"name":"fixed","id":"cfg-fixed"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"floating","id":"cfg-floating"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"focusCls","id":"cfg-focusCls"},{"tagname":"cfg","owner":"Ext.util.Floating","meta":{},"name":"focusOnToFront","id":"cfg-focusOnToFront"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"formBind","id":"cfg-formBind"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"frame","id":"cfg-frame"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"glyph","id":"cfg-glyph"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"handleMouseEvents","id":"cfg-handleMouseEvents"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"handler","id":"cfg-handler"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"height","id":"cfg-height"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"hidden","id":"cfg-hidden"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"hideMode","id":"cfg-hideMode"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"href","id":"cfg-href"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"hrefTarget","id":"cfg-hrefTarget"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"html","id":"cfg-html"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"icon","id":"cfg-icon"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"iconAlign","id":"cfg-iconAlign"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"iconCls","id":"cfg-iconCls"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"id","id":"cfg-id"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"itemId","id":"cfg-itemId"},{"tagname":"cfg","owner":"Ext.util.Observable","meta":{},"name":"listeners","id":"cfg-listeners"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"loader","id":"cfg-loader"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"margin","id":"cfg-margin"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"maxHeight","id":"cfg-maxHeight"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"maxWidth","id":"cfg-maxWidth"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"menu","id":"cfg-menu"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"menuActiveCls","id":"cfg-menuActiveCls"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"menuAlign","id":"cfg-menuAlign"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"minHeight","id":"cfg-minHeight"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"minWidth","id":"cfg-minWidth"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"overCls","id":"cfg-overCls"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"overflowText","id":"cfg-overflowText"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"overflowX","id":"cfg-overflowX"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"overflowY","id":"cfg-overflowY"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"padding","id":"cfg-padding"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"params","id":"cfg-params"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"plugins","id":"cfg-plugins"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"pressed","id":"cfg-pressed"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"pressedCls","id":"cfg-pressedCls"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"preventDefault","id":"cfg-preventDefault"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"region","id":"cfg-region"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"renderData","id":"cfg-renderData"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"renderSelectors","id":"cfg-renderSelectors"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"renderTo","id":"cfg-renderTo"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{"protected":true},"name":"renderTpl","id":"cfg-renderTpl"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"repeat","id":"cfg-repeat"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"resizable","id":"cfg-resizable"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"resizeHandles","id":"cfg-resizeHandles"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"rtl","id":"cfg-rtl"},{"tagname":"cfg","owner":"Ext.state.Stateful","meta":{},"name":"saveDelay","id":"cfg-saveDelay"},{"tagname":"cfg","owner":"Ext.tab.Tab","meta":{},"name":"scale","id":"cfg-scale"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"scope","id":"cfg-scope"},{"tagname":"cfg","owner":"Ext.util.Floating","meta":{},"name":"shadow","id":"cfg-shadow"},{"tagname":"cfg","owner":"Ext.util.Floating","meta":{},"name":"shadowOffset","id":"cfg-shadowOffset"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"showEmptyMenu","id":"cfg-showEmptyMenu"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"shrinkWrap","id":"cfg-shrinkWrap"},{"tagname":"cfg","owner":"Ext.state.Stateful","meta":{},"name":"stateEvents","id":"cfg-stateEvents"},{"tagname":"cfg","owner":"Ext.state.Stateful","meta":{},"name":"stateId","id":"cfg-stateId"},{"tagname":"cfg","owner":"Ext.state.Stateful","meta":{},"name":"stateful","id":"cfg-stateful"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"style","id":"cfg-style"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"tabIndex","id":"cfg-tabIndex"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"text","id":"cfg-text"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"textAlign","id":"cfg-textAlign"},{"tagname":"cfg","owner":"Ext.Component","meta":{},"name":"toFrontOnShow","id":"cfg-toFrontOnShow"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"toggleGroup","id":"cfg-toggleGroup"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"toggleHandler","id":"cfg-toggleHandler"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"tooltip","id":"cfg-tooltip"},{"tagname":"cfg","owner":"Ext.button.Button","meta":{},"name":"tooltipType","id":"cfg-tooltipType"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"tpl","id":"cfg-tpl"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"tplWriteMode","id":"cfg-tplWriteMode"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"ui","id":"cfg-ui"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"uiCls","id":"cfg-uiCls"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{},"name":"width","id":"cfg-width"},{"tagname":"cfg","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"xtype","id":"cfg-xtype"}],"css_var":[{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-arrow-height","id":"css_var-S-button-arrow-height"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-arrow-width","id":"css_var-S-button-arrow-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-background-color","id":"css_var-S-button-default-background-color"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-background-color-disabled","id":"css_var-S-button-default-background-color-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-background-color-focus","id":"css_var-S-button-default-background-color-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-background-color-over","id":"css_var-S-button-default-background-color-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-background-color-pressed","id":"css_var-S-button-default-background-color-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-background-gradient","id":"css_var-S-button-default-background-gradient"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-background-gradient-disabled","id":"css_var-S-button-default-background-gradient-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-background-gradient-focus","id":"css_var-S-button-default-background-gradient-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-background-gradient-over","id":"css_var-S-button-default-background-gradient-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-background-gradient-pressed","id":"css_var-S-button-default-background-gradient-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-base-color","id":"css_var-S-button-default-base-color"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-base-color-disabled","id":"css_var-S-button-default-base-color-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-base-color-focus","id":"css_var-S-button-default-base-color-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-base-color-over","id":"css_var-S-button-default-base-color-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-base-color-pressed","id":"css_var-S-button-default-base-color-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-border-color","id":"css_var-S-button-default-border-color"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-border-color-disabled","id":"css_var-S-button-default-border-color-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-border-color-focus","id":"css_var-S-button-default-border-color-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-border-color-over","id":"css_var-S-button-default-border-color-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-border-color-pressed","id":"css_var-S-button-default-border-color-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-color","id":"css_var-S-button-default-color"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-color-disabled","id":"css_var-S-button-default-color-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-color-focus","id":"css_var-S-button-default-color-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-color-over","id":"css_var-S-button-default-color-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-color-pressed","id":"css_var-S-button-default-color-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-glyph-color","id":"css_var-S-button-default-glyph-color"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-default-glyph-opacity","id":"css_var-S-button-default-glyph-opacity"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-icon-spacing","id":"css_var-S-button-icon-spacing"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-include-split-over-arrows","id":"css_var-S-button-include-split-over-arrows"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-include-ui-menu-arrows","id":"css_var-S-button-include-ui-menu-arrows"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-include-ui-split-arrows","id":"css_var-S-button-include-ui-split-arrows"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-inner-opacity-disabled","id":"css_var-S-button-inner-opacity-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-arrow-height","id":"css_var-S-button-large-arrow-height"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-arrow-width","id":"css_var-S-button-large-arrow-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-border-radius","id":"css_var-S-button-large-border-radius"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-border-width","id":"css_var-S-button-large-border-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-family","id":"css_var-S-button-large-font-family"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-family-disabled","id":"css_var-S-button-large-font-family-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-family-focus","id":"css_var-S-button-large-font-family-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-family-over","id":"css_var-S-button-large-font-family-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-family-pressed","id":"css_var-S-button-large-font-family-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-size","id":"css_var-S-button-large-font-size"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-size-disabled","id":"css_var-S-button-large-font-size-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-size-focus","id":"css_var-S-button-large-font-size-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-size-over","id":"css_var-S-button-large-font-size-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-size-pressed","id":"css_var-S-button-large-font-size-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-weight","id":"css_var-S-button-large-font-weight"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-weight-disabled","id":"css_var-S-button-large-font-weight-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-weight-focus","id":"css_var-S-button-large-font-weight-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-weight-over","id":"css_var-S-button-large-font-weight-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-font-weight-pressed","id":"css_var-S-button-large-font-weight-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-icon-size","id":"css_var-S-button-large-icon-size"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-padding","id":"css_var-S-button-large-padding"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-split-height","id":"css_var-S-button-large-split-height"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-split-width","id":"css_var-S-button-large-split-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-large-text-padding","id":"css_var-S-button-large-text-padding"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-arrow-height","id":"css_var-S-button-medium-arrow-height"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-arrow-width","id":"css_var-S-button-medium-arrow-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-border-radius","id":"css_var-S-button-medium-border-radius"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-border-width","id":"css_var-S-button-medium-border-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-family","id":"css_var-S-button-medium-font-family"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-family-disabled","id":"css_var-S-button-medium-font-family-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-family-focus","id":"css_var-S-button-medium-font-family-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-family-over","id":"css_var-S-button-medium-font-family-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-family-pressed","id":"css_var-S-button-medium-font-family-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-size","id":"css_var-S-button-medium-font-size"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-size-disabled","id":"css_var-S-button-medium-font-size-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-size-focus","id":"css_var-S-button-medium-font-size-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-size-over","id":"css_var-S-button-medium-font-size-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-size-pressed","id":"css_var-S-button-medium-font-size-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-weight","id":"css_var-S-button-medium-font-weight"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-weight-disabled","id":"css_var-S-button-medium-font-weight-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-weight-focus","id":"css_var-S-button-medium-font-weight-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-weight-over","id":"css_var-S-button-medium-font-weight-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-font-weight-pressed","id":"css_var-S-button-medium-font-weight-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-icon-size","id":"css_var-S-button-medium-icon-size"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-padding","id":"css_var-S-button-medium-padding"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-split-height","id":"css_var-S-button-medium-split-height"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-split-width","id":"css_var-S-button-medium-split-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-medium-text-padding","id":"css_var-S-button-medium-text-padding"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-opacity-disabled","id":"css_var-S-button-opacity-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-arrow-height","id":"css_var-S-button-small-arrow-height"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-arrow-width","id":"css_var-S-button-small-arrow-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-border-radius","id":"css_var-S-button-small-border-radius"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-border-width","id":"css_var-S-button-small-border-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-family","id":"css_var-S-button-small-font-family"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-family-disabled","id":"css_var-S-button-small-font-family-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-family-focus","id":"css_var-S-button-small-font-family-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-family-over","id":"css_var-S-button-small-font-family-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-family-pressed","id":"css_var-S-button-small-font-family-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-size","id":"css_var-S-button-small-font-size"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-size-disabled","id":"css_var-S-button-small-font-size-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-size-focus","id":"css_var-S-button-small-font-size-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-size-over","id":"css_var-S-button-small-font-size-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-size-pressed","id":"css_var-S-button-small-font-size-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-weight","id":"css_var-S-button-small-font-weight"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-weight-disabled","id":"css_var-S-button-small-font-weight-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-weight-focus","id":"css_var-S-button-small-font-weight-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-weight-over","id":"css_var-S-button-small-font-weight-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-font-weight-pressed","id":"css_var-S-button-small-font-weight-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-icon-size","id":"css_var-S-button-small-icon-size"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-padding","id":"css_var-S-button-small-padding"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-split-height","id":"css_var-S-button-small-split-height"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-split-width","id":"css_var-S-button-small-split-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-small-text-padding","id":"css_var-S-button-small-text-padding"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-split-height","id":"css_var-S-button-split-height"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-split-width","id":"css_var-S-button-split-width"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-background-color","id":"css_var-S-button-toolbar-background-color"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-background-color-disabled","id":"css_var-S-button-toolbar-background-color-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-background-color-focus","id":"css_var-S-button-toolbar-background-color-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-background-color-over","id":"css_var-S-button-toolbar-background-color-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-background-color-pressed","id":"css_var-S-button-toolbar-background-color-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-background-gradient","id":"css_var-S-button-toolbar-background-gradient"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-background-gradient-disabled","id":"css_var-S-button-toolbar-background-gradient-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-background-gradient-focus","id":"css_var-S-button-toolbar-background-gradient-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-background-gradient-over","id":"css_var-S-button-toolbar-background-gradient-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-background-gradient-pressed","id":"css_var-S-button-toolbar-background-gradient-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-border-color","id":"css_var-S-button-toolbar-border-color"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-border-color-disabled","id":"css_var-S-button-toolbar-border-color-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-border-color-focus","id":"css_var-S-button-toolbar-border-color-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-border-color-over","id":"css_var-S-button-toolbar-border-color-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-border-color-pressed","id":"css_var-S-button-toolbar-border-color-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-color","id":"css_var-S-button-toolbar-color"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-color-disabled","id":"css_var-S-button-toolbar-color-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-color-focus","id":"css_var-S-button-toolbar-color-focus"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-color-over","id":"css_var-S-button-toolbar-color-over"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-color-pressed","id":"css_var-S-button-toolbar-color-pressed"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-glyph-color","id":"css_var-S-button-toolbar-glyph-color"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-glyph-opacity","id":"css_var-S-button-toolbar-glyph-opacity"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-include-split-noline-arrows","id":"css_var-S-button-toolbar-include-split-noline-arrows"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-inner-opacity-disabled","id":"css_var-S-button-toolbar-inner-opacity-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$button-toolbar-opacity-disabled","id":"css_var-S-button-toolbar-opacity-disabled"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$include-button-default-large-ui","id":"css_var-S-include-button-default-large-ui"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$include-button-default-medium-ui","id":"css_var-S-include-button-default-medium-ui"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$include-button-default-small-ui","id":"css_var-S-include-button-default-small-ui"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$include-button-default-toolbar-large-ui","id":"css_var-S-include-button-default-toolbar-large-ui"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$include-button-default-toolbar-medium-ui","id":"css_var-S-include-button-default-toolbar-medium-ui"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$include-button-default-toolbar-small-ui","id":"css_var-S-include-button-default-toolbar-small-ui"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$include-button-default-toolbar-ui","id":"css_var-S-include-button-default-toolbar-ui"},{"tagname":"css_var","owner":"Ext.button.Button","meta":{},"name":"$include-button-default-ui","id":"css_var-S-include-button-default-ui"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$include-tab-default-ui","id":"css_var-S-include-tab-default-ui"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-background-gradient","id":"css_var-S-tab-background-gradient"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-background-gradient-active","id":"css_var-S-tab-background-gradient-active"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-background-gradient-disabled","id":"css_var-S-tab-background-gradient-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-background-gradient-over","id":"css_var-S-tab-background-gradient-over"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-base-color","id":"css_var-S-tab-base-color"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-base-color-active","id":"css_var-S-tab-base-color-active"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-base-color-disabled","id":"css_var-S-tab-base-color-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-base-color-over","id":"css_var-S-tab-base-color-over"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-border-color","id":"css_var-S-tab-border-color"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-border-color-active","id":"css_var-S-tab-border-color-active"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-border-color-disabled","id":"css_var-S-tab-border-color-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-border-color-over","id":"css_var-S-tab-border-color-over"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-border-radius","id":"css_var-S-tab-border-radius"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-border-width","id":"css_var-S-tab-border-width"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-closable-icon-height","id":"css_var-S-tab-closable-icon-height"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-closable-icon-include-hover-background-position","id":"css_var-S-tab-closable-icon-include-hover-background-position"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-closable-icon-include-pressed-background-position","id":"css_var-S-tab-closable-icon-include-pressed-background-position"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-closable-icon-opacity","id":"css_var-S-tab-closable-icon-opacity"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-closable-icon-opacity-disabled","id":"css_var-S-tab-closable-icon-opacity-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-closable-icon-opacity-over","id":"css_var-S-tab-closable-icon-opacity-over"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-closable-icon-right","id":"css_var-S-tab-closable-icon-right"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-closable-icon-spacing","id":"css_var-S-tab-closable-icon-spacing"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-closable-icon-top","id":"css_var-S-tab-closable-icon-top"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-closable-icon-width","id":"css_var-S-tab-closable-icon-width"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-color","id":"css_var-S-tab-color"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-color-active","id":"css_var-S-tab-color-active"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-color-disabled","id":"css_var-S-tab-color-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-color-over","id":"css_var-S-tab-color-over"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-cursor","id":"css_var-S-tab-cursor"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-cursor-disabled","id":"css_var-S-tab-cursor-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-family","id":"css_var-S-tab-font-family"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-family-active","id":"css_var-S-tab-font-family-active"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-family-disabled","id":"css_var-S-tab-font-family-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-family-over","id":"css_var-S-tab-font-family-over"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-size","id":"css_var-S-tab-font-size"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-size-active","id":"css_var-S-tab-font-size-active"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-size-disabled","id":"css_var-S-tab-font-size-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-size-over","id":"css_var-S-tab-font-size-over"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-weight","id":"css_var-S-tab-font-weight"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-weight-active","id":"css_var-S-tab-font-weight-active"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-weight-disabled","id":"css_var-S-tab-font-weight-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-font-weight-over","id":"css_var-S-tab-font-weight-over"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-glyph-color","id":"css_var-S-tab-glyph-color"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-glyph-color-active","id":"css_var-S-tab-glyph-color-active"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-glyph-color-disabled","id":"css_var-S-tab-glyph-color-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-glyph-color-over","id":"css_var-S-tab-glyph-color-over"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-glyph-opacity","id":"css_var-S-tab-glyph-opacity"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-glyph-opacity-disabled","id":"css_var-S-tab-glyph-opacity-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-icon-background-position","id":"css_var-S-tab-icon-background-position"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-icon-height","id":"css_var-S-tab-icon-height"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-icon-opacity-disabled","id":"css_var-S-tab-icon-opacity-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-icon-spacing","id":"css_var-S-tab-icon-spacing"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-icon-width","id":"css_var-S-tab-icon-width"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-inner-border-color","id":"css_var-S-tab-inner-border-color"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-inner-border-width","id":"css_var-S-tab-inner-border-width"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-left-rotate-direction","id":"css_var-S-tab-left-rotate-direction"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-line-height","id":"css_var-S-tab-line-height"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-margin","id":"css_var-S-tab-margin"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-opacity-disabled","id":"css_var-S-tab-opacity-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-padding","id":"css_var-S-tab-padding"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-right-rotate-direction","id":"css_var-S-tab-right-rotate-direction"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-text-opacity-disabled","id":"css_var-S-tab-text-opacity-disabled"},{"tagname":"css_var","owner":"Ext.tab.Tab","meta":{},"name":"$tab-text-padding","id":"css_var-S-tab-text-padding"}],"method":[{"tagname":"method","owner":"Ext.Component","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"activate","id":"method-activate"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{},"name":"addChildEls","id":"method-addChildEls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0","deprecated":{"text":"Use {@link #addCls} instead.","version":"4.1"}},"name":"addClass","id":"method-addClass"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"addCls","id":"method-addCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"addClsWithUI","id":"method-addClsWithUI"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"addEvents","id":"method-addEvents"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"addFocusListener","id":"method-addFocusListener"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"addListener","id":"method-addListener"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"addManagedListener","id":"method-addManagedListener"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"addOverCls","id":"method-addOverCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"addPlugin","id":"method-addPlugin"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"addPropertyToState","id":"method-addPropertyToState"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{},"name":"addStateEvents","id":"method-addStateEvents"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"addUIClsToElement","id":"method-addUIClsToElement"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"addUIToElement","id":"method-addUIToElement"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"private":true},"name":"adjustForConstraints","id":"method-adjustForConstraints"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"adjustPosition","id":"method-adjustPosition"},{"tagname":"method","owner":"Ext.Component","meta":{"template":true,"protected":true},"name":"afterComponentLayout","id":"method-afterComponentLayout"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"afterFirstLayout","id":"method-afterFirstLayout"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"afterHide","id":"method-afterHide"},{"tagname":"method","owner":"Ext.Component","meta":{"template":true,"protected":true},"name":"afterRender","id":"method-afterRender"},{"tagname":"method","owner":"Ext.Component","meta":{"template":true,"protected":true},"name":"afterSetPosition","id":"method-afterSetPosition"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"afterShow","id":"method-afterShow"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"chainable":true},"name":"alignTo","id":"method-alignTo"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"chainable":true},"name":"anchorTo","id":"method-anchorTo"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"private":true},"name":"anim","id":"method-anim"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"animate","id":"method-animate"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{"private":true},"name":"applyChildEls","id":"method-applyChildEls"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"applyRenderSelectors","id":"method-applyRenderSelectors"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{},"name":"applyState","id":"method-applyState"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"beforeBlur","id":"method-beforeBlur"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true,"template":true},"name":"beforeComponentLayout","id":"method-beforeComponentLayout"},{"tagname":"method","owner":"Ext.button.Button","meta":{"template":true,"protected":true,"private":true},"name":"beforeDestroy","id":"method-beforeDestroy"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"beforeFocus","id":"method-beforeFocus"},{"tagname":"method","owner":"Ext.Component","meta":{"template":true,"protected":true},"name":"beforeLayout","id":"method-beforeLayout"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"beforeRender","id":"method-beforeRender"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"beforeSetPosition","id":"method-beforeSetPosition"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"beforeShow","id":"method-beforeShow"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true,"private":true},"name":"blur","id":"method-blur"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"bubble","id":"method-bubble"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"private":true},"name":"calculateAnchorXY","id":"method-calculateAnchorXY"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"calculateConstrainedPosition","id":"method-calculateConstrainedPosition"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true,"deprecated":{"text":"as of 4.1. Use {@link #callParent} instead."}},"name":"callOverridden","id":"method-callOverridden"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"callParent","id":"method-callParent"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"callSuper","id":"method-callSuper"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true},"name":"cancelFocus","id":"method-cancelFocus"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"captureArgs","id":"method-captureArgs"},{"tagname":"method","owner":"Ext.util.Floating","meta":{},"name":"center","id":"method-center"},{"tagname":"method","owner":"Ext.Queryable","meta":{},"name":"child","id":"method-child"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"clearListeners","id":"method-clearListeners"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"clearManagedListeners","id":"method-clearManagedListeners"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"clearTip","id":"method-clearTip"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"cloneConfig","id":"method-cloneConfig"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"configClass","id":"method-configClass"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"constructPlugin","id":"method-constructPlugin"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"constructPlugins","id":"method-constructPlugins"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"continueFireEvent","id":"method-continueFireEvent"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"convertPositionSpec","id":"method-convertPositionSpec"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"createRelayer","id":"method-createRelayer"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"deactivate","id":"method-deactivate"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"deleteMembers","id":"method-deleteMembers"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"destroy","id":"method-destroy"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"didIconStateChange","id":"method-didIconStateChange"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"since":"1.1.0"},"name":"disable","id":"method-disable"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"doApplyRenderTpl","id":"method-doApplyRenderTpl"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{},"name":"doAutoRender","id":"method-doAutoRender"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"chainable":true},"name":"doComponentLayout","id":"method-doComponentLayout"},{"tagname":"method","owner":"Ext.util.Floating","meta":{},"name":"doConstrain","id":"method-doConstrain"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"doRenderContent","id":"method-doRenderContent"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"doRenderFramingDockedItems","id":"method-doRenderFramingDockedItems"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"doToggle","id":"method-doToggle"},{"tagname":"method","owner":"Ext.Queryable","meta":{},"name":"down","id":"method-down"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"since":"1.1.0"},"name":"enable","id":"method-enable"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"enableBubble","id":"method-enableBubble"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{},"name":"ensureAttachedToBody","id":"method-ensureAttachedToBody"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"findParentBy","id":"method-findParentBy"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"findParentByType","id":"method-findParentByType"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"findPlugin","id":"method-findPlugin"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"finishRender","id":"method-finishRender"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"finishRenderChildren","id":"method-finishRenderChildren"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"fireClose","id":"method-fireClose"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"fireEvent","id":"method-fireEvent"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"fireEventArgs","id":"method-fireEventArgs"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"fireHandler","id":"method-fireHandler"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"fireHierarchyEvent","id":"method-fireHierarchyEvent"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"fitContainer","id":"method-fitContainer"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"focus","id":"method-focus"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"deprecated":{"text":"Use {@link #updateLayout} instead.","version":"4.1.0"}},"name":"forceComponentLayout","id":"method-forceComponentLayout"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getActionEl","id":"method-getActionEl"},{"tagname":"method","owner":"Ext.util.Animate","meta":{},"name":"getActiveAnimation","id":"method-getActiveAnimation"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getAlignToXY","id":"method-getAlignToXY"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"private":true},"name":"getAnchor","id":"method-getAnchor"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getAnchorToXY","id":"method-getAnchorToXY"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getAnchorXY","id":"method-getAnchorXY"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getAnimateTarget","id":"method-getAnimateTarget"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getAutoId","id":"method-getAutoId"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getBorderPadding","id":"method-getBorderPadding"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getBox","id":"method-getBox"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getBtnWrapFrameWidth","id":"method-getBtnWrapFrameWidth"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"getBubbleParent","id":"method-getBubbleParent"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true},"name":"getBubbleTarget","id":"method-getBubbleTarget"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{"private":true},"name":"getChildEls","id":"method-getChildEls"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{"private":true},"name":"getClassChildEls","id":"method-getClassChildEls"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getComponentCls","id":"method-getComponentCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getComponentLayout","id":"method-getComponentLayout"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"getConfig","id":"method-getConfig"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getConstrainVector","id":"method-getConstrainVector"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getContentTarget","id":"method-getContentTarget"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getDragEl","id":"method-getDragEl"},{"tagname":"method","owner":"Ext.Component","meta":{"since":"1.1.0"},"name":"getEl","id":"method-getEl"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getElConfig","id":"method-getElConfig"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getFocusEl","id":"method-getFocusEl"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getFrameInfo","id":"method-getFrameInfo"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getFrameRenderData","id":"method-getFrameRenderData"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getFrameTpl","id":"method-getFrameTpl"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"getFramingInfoCls","id":"method-getFramingInfoCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getHeight","id":"method-getHeight"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getHierarchyState","id":"method-getHierarchyState"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getHref","id":"method-getHref"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"getId","id":"method-getId"},{"tagname":"method","owner":"Ext.Base","meta":{},"name":"getInitialConfig","id":"method-getInitialConfig"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getInnerCls","id":"method-getInnerCls"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{},"name":"getInsertPosition","id":"method-getInsertPosition"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getItemId","id":"method-getItemId"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getLoader","id":"method-getLoader"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getLocalX","id":"method-getLocalX"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getLocalXY","id":"method-getLocalXY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getLocalY","id":"method-getLocalY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getMaskTarget","id":"method-getMaskTarget"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getOffsetsTo","id":"method-getOffsetsTo"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getOuterSize","id":"method-getOuterSize"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getOverflowEl","id":"method-getOverflowEl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getOverflowStyle","id":"method-getOverflowStyle"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getOwningBorderContainer","id":"method-getOwningBorderContainer"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getOwningBorderLayout","id":"method-getOwningBorderLayout"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getPlugin","id":"method-getPlugin"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"getPosition","id":"method-getPosition"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getPositionEl","id":"method-getPositionEl"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getProxy","id":"method-getProxy"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getRefItems","id":"method-getRefItems"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"private":true},"name":"getRefOwner","id":"method-getRefOwner"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getRegion","id":"method-getRegion"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getRenderTree","id":"method-getRenderTree"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getResizeEl","id":"method-getResizeEl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getSize","id":"method-getSize"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getSizeModel","id":"method-getSizeModel"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getSplitCls","id":"method-getSplitCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getState","id":"method-getState"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{"private":true},"name":"getStateId","id":"method-getStateId"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"getStyleProxy","id":"method-getStyleProxy"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getTargetEl","id":"method-getTargetEl"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"protected":true},"name":"getTemplateArgs","id":"method-getTemplateArgs"},{"tagname":"method","owner":"Ext.button.Button","meta":{},"name":"getText","id":"method-getText"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getTipAttr","id":"method-getTipAttr"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"getTpl","id":"method-getTpl"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getTriggerRegion","id":"method-getTriggerRegion"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"getTriggerSize","id":"method-getTriggerSize"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"getViewRegion","id":"method-getViewRegion"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"getVisibilityEl","id":"method-getVisibilityEl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getWidth","id":"method-getWidth"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getX","id":"method-getX"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"getXType","id":"method-getXType"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"getXTypes","id":"method-getXTypes"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getXY","id":"method-getXY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"getY","id":"method-getY"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"deprecated":{"text":"Replaced by {@link #getActiveAnimation}","version":"4.0"}},"name":"hasActiveFx","id":"method-hasActiveFx"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"hasCls","id":"method-hasCls"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"hasConfig","id":"method-hasConfig"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"hasListener","id":"method-hasListener"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"hasUICls","id":"method-hasUICls"},{"tagname":"method","owner":"Ext.button.Button","meta":{},"name":"hasVisibleMenu","id":"method-hasVisibleMenu"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"hide","id":"method-hide"},{"tagname":"method","owner":"Ext.button.Button","meta":{"chainable":true},"name":"hideMenu","id":"method-hideMenu"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"initBorderRegion","id":"method-initBorderRegion"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"initCls","id":"method-initCls"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"since":"1.1.0","template":true,"protected":true},"name":"initComponent","id":"method-initComponent"},{"tagname":"method","owner":"Ext.Base","meta":{"chainable":true,"protected":true},"name":"initConfig","id":"method-initConfig"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"initContainer","id":"method-initContainer"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"initDraggable","id":"method-initDraggable"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"initEvents","id":"method-initEvents"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"initFrame","id":"method-initFrame"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"initFramingTpl","id":"method-initFramingTpl"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"initHierarchyEvents","id":"method-initHierarchyEvents"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"initHierarchyState","id":"method-initHierarchyState"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"initPadding","id":"method-initPadding"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"initPlugin","id":"method-initPlugin"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"protected":true},"name":"initRenderData","id":"method-initRenderData"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"initRenderTpl","id":"method-initRenderTpl"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"initResizable","id":"method-initResizable"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{"private":true},"name":"initState","id":"method-initState"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"initStyles","id":"method-initStyles"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"is","id":"method-is"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"isContainedFloater","id":"method-isContainedFloater"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isDescendant","id":"method-isDescendant"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isDescendantOf","id":"method-isDescendantOf"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isDisabled","id":"method-isDisabled"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isDraggable","id":"method-isDraggable"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isDroppable","id":"method-isDroppable"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isFloating","id":"method-isFloating"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isFocusable","id":"method-isFocusable"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isHidden","id":"method-isHidden"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isHierarchicallyHidden","id":"method-isHierarchicallyHidden"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"isLayoutRoot","id":"method-isLayoutRoot"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"isLayoutSuspended","id":"method-isLayoutSuspended"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isLocalRtl","id":"method-isLocalRtl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isOppositeRootDirection","id":"method-isOppositeRootDirection"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"isParentRtl","id":"method-isParentRtl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"isVisible","id":"method-isVisible"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0"},"name":"isXType","id":"method-isXType"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"makeFloating","id":"method-makeFloating"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"mask","id":"method-mask"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"maybeShowMenu","id":"method-maybeShowMenu"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"mon","id":"method-mon"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"move","id":"method-move"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"mun","id":"method-mun"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"nextNode","id":"method-nextNode"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"nextSibling","id":"method-nextSibling"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"on","id":"method-on"},{"tagname":"method","owner":"Ext.Component","meta":{"since":"3.4.0","template":true,"protected":true},"name":"onAdded","id":"method-onAdded"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"onAfterFloatLayout","id":"method-onAfterFloatLayout"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"onBeforeFloatLayout","id":"method-onBeforeFloatLayout"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"onBlur","id":"method-onBlur"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"onBoxReady","id":"method-onBoxReady"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onClick","id":"method-onClick"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"onCloseClick","id":"method-onCloseClick"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"onConfigUpdate","id":"method-onConfigUpdate"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"onDeleteKey","id":"method-onDeleteKey"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"template":true,"protected":true},"name":"onDestroy","id":"method-onDestroy"},{"tagname":"method","owner":"Ext.button.Button","meta":{"template":true,"protected":true},"name":"onDisable","id":"method-onDisable"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onDownKey","id":"method-onDownKey"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true,"template":true},"name":"onEnable","id":"method-onEnable"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"onEnterKey","id":"method-onEnterKey"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"onFloatShow","id":"method-onFloatShow"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"onFocus","id":"method-onFocus"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"onHide","id":"method-onHide"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"onKeyDown","id":"method-onKeyDown"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMenuHide","id":"method-onMenuHide"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMenuShow","id":"method-onMenuShow"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMenuTriggerOut","id":"method-onMenuTriggerOut"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMenuTriggerOver","id":"method-onMenuTriggerOver"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMouseDown","id":"method-onMouseDown"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMouseEnter","id":"method-onMouseEnter"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMouseLeave","id":"method-onMouseLeave"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMouseMove","id":"method-onMouseMove"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMouseOut","id":"method-onMouseOut"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMouseOver","id":"method-onMouseOver"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onMouseUp","id":"method-onMouseUp"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true,"template":true},"name":"onPosition","id":"method-onPosition"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0","protected":true,"template":true},"name":"onRemoved","id":"method-onRemoved"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"template":true,"protected":true},"name":"onRender","id":"method-onRender"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"onRepeatClick","id":"method-onRepeatClick"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true,"template":true},"name":"onResize","id":"method-onResize"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"onShow","id":"method-onShow"},{"tagname":"method","owner":"Ext.Component","meta":{"protected":true,"template":true},"name":"onShowComplete","id":"method-onShowComplete"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"onShowVeto","id":"method-onShowVeto"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{"private":true},"name":"onStateChange","id":"method-onStateChange"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"parseBox","id":"method-parseBox"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"protected":true},"name":"postBlur","id":"method-postBlur"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"prepareClass","id":"method-prepareClass"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"previousNode","id":"method-previousNode"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"previousSibling","id":"method-previousSibling"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{"private":true},"name":"prune","id":"method-prune"},{"tagname":"method","owner":"Ext.Queryable","meta":{},"name":"query","id":"method-query"},{"tagname":"method","owner":"Ext.Queryable","meta":{},"name":"queryBy","id":"method-queryBy"},{"tagname":"method","owner":"Ext.Queryable","meta":{},"name":"queryById","id":"method-queryById"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"registerFloatingItem","id":"method-registerFloatingItem"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"registerWithOwnerCt","id":"method-registerWithOwnerCt"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"relayEvents","id":"method-relayEvents"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"chainable":true},"name":"removeAnchor","id":"method-removeAnchor"},{"tagname":"method","owner":"Ext.util.ElementContainer","meta":{},"name":"removeChildEls","id":"method-removeChildEls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"2.3.0","private":true},"name":"removeClass","id":"method-removeClass"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"removeCls","id":"method-removeCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"removeClsWithUI","id":"method-removeClsWithUI"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"removeListener","id":"method-removeListener"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"removeManagedListener","id":"method-removeManagedListener"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"removeManagedListenerItem","id":"method-removeManagedListenerItem"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"removeOverCls","id":"method-removeOverCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"removePlugin","id":"method-removePlugin"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"removeUIClsFromElement","id":"method-removeUIClsFromElement"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"removeUIFromElement","id":"method-removeUIFromElement"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{},"name":"render","id":"method-render"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"restoreClick","id":"method-restoreClick"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"resumeEvent","id":"method-resumeEvent"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"resumeEvents","id":"method-resumeEvents"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"resumeLayouts","id":"method-resumeLayouts"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{},"name":"savePropToState","id":"method-savePropToState"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{},"name":"savePropsToState","id":"method-savePropsToState"},{"tagname":"method","owner":"Ext.state.Stateful","meta":{},"name":"saveState","id":"method-saveState"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"scrollBy","id":"method-scrollBy"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"chainable":true},"name":"sequenceFx","id":"method-sequenceFx"},{"tagname":"method","owner":"Ext.util.Floating","meta":{},"name":"setActive","id":"method-setActive"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"setAutoScroll","id":"method-setAutoScroll"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setBorder","id":"method-setBorder"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"setBorderRegion","id":"method-setBorderRegion"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"chainable":true},"name":"setBox","id":"method-setBox"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{},"name":"setCard","id":"method-setCard"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{},"name":"setClosable","id":"method-setClosable"},{"tagname":"method","owner":"Ext.button.Button","meta":{"private":true},"name":"setComponentCls","id":"method-setComponentCls"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"setComponentLayout","id":"method-setComponentLayout"},{"tagname":"method","owner":"Ext.Base","meta":{"chainable":true,"private":true},"name":"setConfig","id":"method-setConfig"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setDisabled","id":"method-setDisabled"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setDocked","id":"method-setDocked"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"setElOrientation","id":"method-setElOrientation"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"setFloatParent","id":"method-setFloatParent"},{"tagname":"method","owner":"Ext.button.Button","meta":{"chainable":true},"name":"setGlyph","id":"method-setGlyph"},{"tagname":"method","owner":"Ext.button.Button","meta":{"chainable":true},"name":"setHandler","id":"method-setHandler"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setHeight","id":"method-setHeight"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"setHiddenState","id":"method-setHiddenState"},{"tagname":"method","owner":"Ext.button.Button","meta":{},"name":"setHref","id":"method-setHref"},{"tagname":"method","owner":"Ext.button.Button","meta":{"chainable":true},"name":"setIcon","id":"method-setIcon"},{"tagname":"method","owner":"Ext.button.Button","meta":{"chainable":true},"name":"setIconCls","id":"method-setIconCls"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"setLoading","id":"method-setLoading"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setLocalX","id":"method-setLocalX"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setLocalXY","id":"method-setLocalXY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setLocalY","id":"method-setLocalY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setMargin","id":"method-setMargin"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"setOverflowXY","id":"method-setOverflowXY"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"setPagePosition","id":"method-setPagePosition"},{"tagname":"method","owner":"Ext.button.Button","meta":{},"name":"setParams","id":"method-setParams"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"setPosition","id":"method-setPosition"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"chainable":true},"name":"setRegion","id":"method-setRegion"},{"tagname":"method","owner":"Ext.Component","meta":{},"name":"setRegionWeight","id":"method-setRegionWeight"},{"tagname":"method","owner":"Ext.button.Button","meta":{},"name":"setScale","id":"method-setScale"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setSize","id":"method-setSize"},{"tagname":"method","owner":"Ext.button.Button","meta":{"chainable":true},"name":"setText","id":"method-setText"},{"tagname":"method","owner":"Ext.button.Button","meta":{},"name":"setTextAlign","id":"method-setTextAlign"},{"tagname":"method","owner":"Ext.button.Button","meta":{"chainable":true},"name":"setTooltip","id":"method-setTooltip"},{"tagname":"method","owner":"Ext.button.Button","meta":{},"name":"setUI","id":"method-setUI"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"setVisible","id":"method-setVisible"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setWidth","id":"method-setWidth"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setX","id":"method-setX"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setXY","id":"method-setXY"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"setY","id":"method-setY"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"setZIndex","id":"method-setZIndex"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"setupFramingTpl","id":"method-setupFramingTpl"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"setupProtoEl","id":"method-setupProtoEl"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"setupRenderTpl","id":"method-setupRenderTpl"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"show","id":"method-show"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"showAt","id":"method-showAt"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"showBy","id":"method-showBy"},{"tagname":"method","owner":"Ext.button.Button","meta":{},"name":"showMenu","id":"method-showMenu"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"statics","id":"method-statics"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"chainable":true},"name":"stopAnimation","id":"method-stopAnimation"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"deprecated":{"text":"Replaced by {@link #stopAnimation}","version":"4.0"}},"name":"stopFx","id":"method-stopFx"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"suspendEvent","id":"method-suspendEvent"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"suspendEvents","id":"method-suspendEvents"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"suspendLayouts","id":"method-suspendLayouts"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"syncClosableElements","id":"method-syncClosableElements"},{"tagname":"method","owner":"Ext.tab.Tab","meta":{"private":true},"name":"syncClosableUI","id":"method-syncClosableUI"},{"tagname":"method","owner":"Ext.util.Animate","meta":{"chainable":true},"name":"syncFx","id":"method-syncFx"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"syncHidden","id":"method-syncHidden"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"private":true},"name":"syncShadow","id":"method-syncShadow"},{"tagname":"method","owner":"Ext.util.Floating","meta":{"chainable":true},"name":"toBack","id":"method-toBack"},{"tagname":"method","owner":"Ext.util.Floating","meta":{},"name":"toFront","id":"method-toFront"},{"tagname":"method","owner":"Ext.button.Button","meta":{"chainable":true},"name":"toggle","id":"method-toggle"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{},"name":"translatePoints","id":"method-translatePoints"},{"tagname":"method","owner":"Ext.util.Positionable","meta":{"private":true},"name":"translateXY","id":"method-translateXY"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"un","id":"method-un"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"unitizeBox","id":"method-unitizeBox"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"unmask","id":"method-unmask"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"unregisterFloatingItem","id":"method-unregisterFloatingItem"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"up","id":"method-up"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"update","id":"method-update"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{"private":true},"name":"updateAria","id":"method-updateAria"},{"tagname":"method","owner":"Ext.Component","meta":{"chainable":true},"name":"updateBox","id":"method-updateBox"},{"tagname":"method","owner":"Ext.util.Renderable","meta":{"private":true},"name":"updateFrame","id":"method-updateFrame"},{"tagname":"method","owner":"Ext.AbstractComponent","meta":{},"name":"updateLayout","id":"method-updateLayout"},{"tagname":"method","owner":"Ext.Component","meta":{"private":true},"name":"wrapPrimaryEl","id":"method-wrapPrimaryEl"}],"event":[{"tagname":"event","owner":"Ext.tab.Tab","meta":{},"name":"activate","id":"event-activate"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"added","id":"event-added"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"afterrender","id":"event-afterrender"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"beforeactivate","id":"event-beforeactivate"},{"tagname":"event","owner":"Ext.tab.Tab","meta":{},"name":"beforeclose","id":"event-beforeclose"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"beforedeactivate","id":"event-beforedeactivate"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"beforedestroy","id":"event-beforedestroy"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"beforehide","id":"event-beforehide"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"beforerender","id":"event-beforerender"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"beforeshow","id":"event-beforeshow"},{"tagname":"event","owner":"Ext.state.Stateful","meta":{},"name":"beforestaterestore","id":"event-beforestaterestore"},{"tagname":"event","owner":"Ext.state.Stateful","meta":{},"name":"beforestatesave","id":"event-beforestatesave"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"blur","id":"event-blur"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"boxready","id":"event-boxready"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"click","id":"event-click"},{"tagname":"event","owner":"Ext.tab.Tab","meta":{},"name":"close","id":"event-close"},{"tagname":"event","owner":"Ext.tab.Tab","meta":{},"name":"deactivate","id":"event-deactivate"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"destroy","id":"event-destroy"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"disable","id":"event-disable"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"enable","id":"event-enable"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"focus","id":"event-focus"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"glyphchange","id":"event-glyphchange"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"hide","id":"event-hide"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"iconchange","id":"event-iconchange"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"menuhide","id":"event-menuhide"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"menushow","id":"event-menushow"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"menutriggerout","id":"event-menutriggerout"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"menutriggerover","id":"event-menutriggerover"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"mouseout","id":"event-mouseout"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"mouseover","id":"event-mouseover"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"move","id":"event-move"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"3.4.0"},"name":"removed","id":"event-removed"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"render","id":"event-render"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{},"name":"resize","id":"event-resize"},{"tagname":"event","owner":"Ext.AbstractComponent","meta":{"since":"1.1.0"},"name":"show","id":"event-show"},{"tagname":"event","owner":"Ext.state.Stateful","meta":{},"name":"staterestore","id":"event-staterestore"},{"tagname":"event","owner":"Ext.state.Stateful","meta":{},"name":"statesave","id":"event-statesave"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"textchange","id":"event-textchange"},{"tagname":"event","owner":"Ext.button.Button","meta":{},"name":"toggle","id":"event-toggle"}],"css_mixin":[{"tagname":"css_mixin","owner":"Ext.button.Button","meta":{},"name":"extjs-button-ui","id":"css_mixin-extjs-button-ui"},{"tagname":"css_mixin","owner":"Ext.tab.Tab","meta":{},"name":"extjs-tab-ui","id":"css_mixin-extjs-tab-ui"}]},"inheritable":null,"private":null,"component":true,"name":"Ext.tab.Tab","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.tab.Tab","mixins":[],"mixedInto":[]});