X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..HEAD:/docs/output/Ext.grid.column.Column.js?ds=inline diff --git a/docs/output/Ext.grid.column.Column.js b/docs/output/Ext.grid.column.Column.js index bea8f8de..e3763c6b 100644 --- a/docs/output/Ext.grid.column.Column.js +++ b/docs/output/Ext.grid.column.Column.js @@ -1,7150 +1 @@ -Ext.data.JsonP.Ext_grid_column_Column({ - "allMixins": [ - "Ext.util.Floating", - "Ext.util.Observable", - "Ext.util.Animate", - "Ext.state.Stateful" - ], - "deprecated": null, - "docauthor": null, - "members": { - "cfg": [ - { - "type": "String/Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-cfg-activeItem", - "shortDoc": "A string component id or the numeric index of the component that should be initially activated within the\ncontainer's...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "name": "activeItem", - "owner": "Ext.container.AbstractContainer", - "doc": "
A string component id or the numeric index of the component that should be initially activated within the\ncontainer's layout on render. For example, activeItem: 'item-1' or activeItem: 0 (index 0 = the first\nitem in the container's collection). activeItem only applies to layout styles that can display\nitems one at a time (like Ext.layout.container.Card and Ext.layout.container.Fit).
\n", - "linenr": 87, - "html_filename": "AbstractContainer2.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Column2.html#Ext-grid-column-Column-cfg-align", - "shortDoc": "Sets the alignment of the header and rendered columns. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "name": "align", - "owner": "Ext.grid.column.Column", - "doc": "Sets the alignment of the header and rendered columns.\nDefaults to 'left'.
\n", - "linenr": 172, - "html_filename": "Column2.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-cfg-autoDestroy", - "shortDoc": "If true the container will automatically destroy any contained component that is removed from it, else\ndestruction mu...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "name": "autoDestroy", - "owner": "Ext.container.AbstractContainer", - "doc": "If true the container will automatically destroy any contained component that is removed from it, else\ndestruction must be handled manually.\nDefaults to true.
\n", - "linenr": 161, - "html_filename": "AbstractContainer2.html" - }, - { - "type": "Mixed", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoEl", - "shortDoc": "A tag name or DomHelper spec used to create the Element which will\nencapsulate this Component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "autoEl", - "owner": "Ext.AbstractComponent", - "doc": "A tag name or DomHelper spec used to create the Element which will\nencapsulate this Component.
\n\n\nYou do not normally need to specify this. For the base classes Ext.Component and Ext.container.Container,\nthis defaults to 'div'. The more complex Sencha classes use a more complex\nDOM structure specified by their own renderTpls.
\n\n\nThis is intended to allow the developer to create application-specific utility Components encapsulated by\ndifferent DOM elements. Example usage:
\n\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\n",
- "linenr": 130,
- "html_filename": "AbstractComponent.html"
- },
- {
- "type": "Mixed",
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "cfg",
- "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoRender",
- "shortDoc": "This config is intended mainly for floating Components which may or may not be shown. ...",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js",
- "private": false,
- "name": "autoRender",
- "owner": "Ext.AbstractComponent",
- "doc": "This config is intended mainly for floating Components which may or may not be shown. Instead\nof using renderTo in the configuration, and rendering upon construction, this allows a Component\nto render itself upon first show.
\n\n\nSpecify as true
to have this Component render to the document body upon first show.
Specify as an element, or the ID of an element to have this Component render to a specific element upon first show.
\n\n\nThis defaults to true
for the Window class.
true
to use overflow:'auto' on the components layout element and show scroll bars automatically when\nnecessary, false
to clip any overflowing content (defaults to false
).
True to automatically show the component upon creation.\nThis config option may only be used for floating components or components\nthat use autoRender. Defaults to false.
\n", - "linenr": 492, - "html_filename": "AbstractComponent.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-baseCls", - "shortDoc": "The base CSS class to apply to this components's element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "baseCls", - "owner": "Ext.AbstractComponent", - "doc": "The base CSS class to apply to this components's element. This will also be prepended to\nelements within this component like Panel's body will get a class x-panel-body. This means\nthat if you create a subclass of Panel, and you want it to get all the Panels styling for the\nelement and the body, you leave the baseCls x-panel and use componentCls to add specific styling for this\ncomponent.
\n", - "linenr": 273, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Number/String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-border", - "shortDoc": "Specifies the border for this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "border", - "owner": "Ext.AbstractComponent", - "doc": "Specifies the border for this component. The border can be a single numeric value to apply to all sides or\nit can be a CSS style specification for each style, for example: '10 5 3 10'.
\n", - "linenr": 360, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Array", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-cfg-bubbleEvents", - "shortDoc": "An array of events that, when fired, should be bubbled to any parent container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "name": "bubbleEvents", - "owner": "Ext.container.AbstractContainer", - "doc": "An array of events that, when fired, should be bubbled to any parent container.\nSee Ext.util.Observable.enableBubble.\nDefaults to ['add', 'remove']
.\n\n",
- "linenr": 179,
- "html_filename": "AbstractContainer2.html"
- },
- {
- "type": "String",
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "cfg",
- "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-cls",
- "shortDoc": "An optional extra CSS class that will be added to this component's Element (defaults to ''). ...",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js",
- "private": false,
- "name": "cls",
- "owner": "Ext.AbstractComponent",
- "doc": "
An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be\nuseful for adding customized styles to the component or any of its children using standard CSS rules.
\n", - "linenr": 289, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Array", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Column2.html#Ext-grid-column-Column-cfg-columns", - "shortDoc": "An optional array of sub-column definitions. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "name": "columns", - "owner": "Ext.grid.column.Column", - "doc": "An optional array of sub-column definitions. This column becomes a group, and houses the columns defined in the columns
config.
Group columns may not be sortable. But they may be hideable and moveable. And you may move headers into and out of a group. Note that\nif all sub columns are dragged out of a group, the group is destroyed.\n\n", - "linenr": 92, - "html_filename": "Column2.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-componentCls", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "componentCls", - "owner": "Ext.AbstractComponent", - "doc": "
CSS Class to be added to a components root level element to give distinction to it\nvia styling.
\n", - "linenr": 283, - "html_filename": "AbstractComponent.html" - }, - { - "type": "String/Object", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-componentLayout", - "shortDoc": "The sizing and positioning of a Component's internal Elements is the responsibility of\nthe Component's layout manager...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "componentLayout", - "owner": "Ext.AbstractComponent", - "doc": "The sizing and positioning of a Component's internal Elements is the responsibility of\nthe Component's layout manager which sizes a Component's internal structure in response to the Component being sized.
\n\n\nGenerally, 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\nThe default layout manager will be used on instances of the base Ext.Component class\nwhich simply sizes the Component's encapsulating element to the height and width specified in the setSize method.
\n\n", - "linenr": 242, - "html_filename": "AbstractComponent.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-contentEl", - "shortDoc": "Optional. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "contentEl", - "owner": "Ext.AbstractComponent", - "doc": "Optional. Specify an existing HTML element, or the id
of an existing HTML element to use as the content\nfor this component.
layout
\nscheme that the Component may use. It is just HTML. Layouts operate on child items
.x-hidden
or the x-hide-display
CSS class to\nprevent a brief flicker of the content before it is rendered to the panel.The initial set of data to apply to the tpl
to\nupdate the content area of the Component.
Required. The name of the field in the\ngrid's Ext.data.Store's Ext.data.Model definition from\nwhich to draw the column's value.
\n\n", - "linenr": 99, - "html_filename": "Column2.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-cfg-defaultType", - "shortDoc": "The default xtype of child Components to create in this Container when\na child item is specified as a raw configurati...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "name": "defaultType", - "owner": "Ext.container.AbstractContainer", - "doc": "The default xtype of child Components to create in this Container when\na child item is specified as a raw configuration object, rather than as an instantiated Component.
\n\n\nDefaults to 'panel'
.
Width of the header if no width or flex is specified. Defaults to 100.
\n", - "linenr": 35, - "html_filename": "Container3.html" - }, - { - "type": "Object|Function", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-cfg-defaults", - "shortDoc": "This option is a means of applying default settings to all added items whether added through the items\nconfig or via ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "name": "defaults", - "owner": "Ext.container.AbstractContainer", - "doc": "This option is a means of applying default settings to all added items whether added through the items\nconfig or via the add or insert methods.
\n\n\nIf an added item is a config object, and not an instantiated Component, then the default properties are\nunconditionally applied. If the added item is an instantiated Component, then the default properties are\napplied conditionally so as not to override existing properties in the item.
\n\n\nIf the defaults option is specified as a function, then the function will be called using this Container as the\nscope (this
reference) and passing the added item as the first parameter. Any resulting object\nfrom that call is then applied to the item as default properties.
For example, to automatically apply padding to the body of each of a set of\ncontained Ext.panel.Panel items, you could pass: defaults: {bodyStyle:'padding:15px'}
.
Usage:
\n\n\ndefaults: { // defaults are applied to items, not the container\n autoScroll:true\n},\nitems: [\n {\n xtype: 'panel', // defaults do not have precedence over\n id: 'panel1', // options in config objects, so the defaults\n autoScroll: false // will not be applied here, panel1 will be autoScroll:false\n },\n new Ext.panel.Panel({ // defaults do have precedence over options\n id: 'panel2', // options in components, so the defaults\n autoScroll: false // will be applied here, panel2 will be autoScroll:true.\n })\n]
\n\n",
- "linenr": 126,
- "html_filename": "AbstractContainer2.html"
- },
- {
- "type": "Boolean",
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "cfg",
- "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-disabled",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js",
- "private": false,
- "name": "disabled",
- "owner": "Ext.AbstractComponent",
- "doc": "Defaults to false.
\n", - "linenr": 384, - "html_filename": "AbstractComponent.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-disabledCls", - "shortDoc": "CSS class to add when the Component is disabled. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "disabledCls", - "owner": "Ext.AbstractComponent", - "doc": "CSS class to add when the Component is disabled. Defaults to 'x-item-disabled'.
\n", - "linenr": 302, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Column2.html#Ext-grid-column-Column-cfg-draggable", - "shortDoc": "Indicates whether or not the header can be drag and drop re-ordered. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "name": "draggable", - "owner": "Ext.grid.column.Column", - "doc": "Indicates whether or not the header can be drag and drop re-ordered.\nDefaults to true.
\n", - "linenr": 178, - "html_filename": "Column2.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Column2.html#Ext-grid-column-Column-cfg-fixed", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "name": "fixed", - "owner": "Ext.grid.column.Column", - "doc": "Prevents the column from being resizable
\n", - "linenr": 127, - "html_filename": "Column2.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Component2.html#Ext-Component-cfg-floating", - "shortDoc": "Specify as true to float the Component outside of the document flow using CSS absolute positioning. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "name": "floating", - "owner": "Ext.Component", - "doc": "Specify as true to float the Component outside of the document flow using CSS absolute positioning.
\n\n\nComponents such as Windows and Menus are floating\nby default.
\n\n\nFloating Components that are programatically rendered will register themselves with the global\nZIndexManager
\n\n\nA floating Component may be used as a child item of a Container. This just allows the floating Component to seek a ZIndexManager by\nexamining the ownerCt chain.
\n\n\nWhen configured as floating, Components acquire, at render time, a ZIndexManager which manages a stack\nof related floating Components. The ZIndexManager brings a single floating Component to the top of its stack when\nthe Component's toFront method is called.
\n\n\nThe ZIndexManager is found by traversing up the ownerCt chain to find an ancestor which itself is floating. This is so that\ndescendant floating Components of floating Containers (Such as a ComboBox dropdown within a Window) can have its zIndex managed relative\nto any siblings, but always above that floating ancestor Container.
\n\n\nIf no floating ancestor is found, a floating Component registers itself with the default ZIndexManager.
\n\n\nFloating components do not participate in the Container's layout. Because of this, they are not rendered until you explicitly\nshow them.
\n\n\nAfter rendering, the ownerCt reference is deleted, and the floatParent property is set to the found floating ancestor Container.\nIf no floating ancestor Container was found the floatParent property will not be set.
\n\n", - "linenr": 178, - "html_filename": "Component2.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Floating.html#Ext-util-Floating-cfg-focusOnToFront", - "shortDoc": "Specifies whether the floated component should be automatically focused when it is\nbrought to the front. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Floating.js", - "private": false, - "name": "focusOnToFront", - "owner": "Ext.util.Floating", - "doc": "Specifies whether the floated component should be automatically focused when it is\nbrought to the front. Defaults to true.
\n", - "linenr": 9, - "html_filename": "Floating.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-frame", - "shortDoc": "Specify as true to have the Component inject framing elements within the Component at render time to\nprovide a graphi...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "frame", - "owner": "Ext.AbstractComponent", - "doc": "Specify as true
to have the Component inject framing elements within the Component at render time to\nprovide a graphical rounded frame around the Component content.
This is only necessary when running on outdated, or non standard-compliant browsers such as Microsoft's Internet Explorer\nprior to version 9 which do not support rounded corners natively.
\n\n\nThe extra space taken up by this framing is available from the read only property frameSize.
\n\n", - "linenr": 219, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Column2.html#Ext-grid-column-Column-cfg-groupable", - "shortDoc": "Optional. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "name": "groupable", - "owner": "Ext.grid.column.Column", - "doc": "Optional. If the grid uses a Ext.grid.feature.Grouping, this option\nmay be used to disable the header menu item to group by the column selected. By default,\nthe header menu group option is enabled. Set to false to disable (but still show) the\ngroup option in the header menu for the column.
\n", - "linenr": 120, - "html_filename": "Column2.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-height", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "height", - "owner": "Ext.AbstractComponent", - "doc": "The height of this component in pixels.
\n", - "linenr": 355, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-hidden", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "hidden", - "owner": "Ext.AbstractComponent", - "doc": "Defaults to false.
\n", - "linenr": 378, - "html_filename": "AbstractComponent.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-hideMode", - "shortDoc": "A String which specifies how this Component's encapsulating DOM element will be hidden. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "hideMode", - "owner": "Ext.AbstractComponent", - "doc": "A String which specifies how this Component's encapsulating DOM element will be hidden.\nValues may be
'display'
: The Component will be hidden using the display: none
style.'visibility'
: The Component will be hidden using the visibility: hidden
style.'offsets'
: The Component will be hidden by absolutely positioning it out of the visible area of the document. This\nis useful when a hidden Component must maintain measurable dimensions. Hiding using display
results\nin a Component having zero dimensions.'display'
.\n",
- "linenr": 409,
- "html_filename": "AbstractComponent.html"
- },
- {
- "type": "Boolean",
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "cfg",
- "href": "Column2.html#Ext-grid-column-Column-cfg-hideable",
- "shortDoc": "Optional. ...",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js",
- "private": false,
- "name": "hideable",
- "owner": "Ext.grid.column.Column",
- "doc": "Optional. Specify as false to prevent the user from hiding this column\n(defaults to true).
\n", - "linenr": 135, - "html_filename": "Column2.html" - }, - { - "type": "String/Object", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-html", - "shortDoc": "An HTML fragment, or a DomHelper specification to use as the layout element\ncontent (defaults to ''). ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "html", - "owner": "Ext.AbstractComponent", - "doc": "An HTML fragment, or a DomHelper specification to use as the layout element\ncontent (defaults to ''). The HTML content is added after the component is rendered,\nso the document will not contain this HTML at the time the render event is fired.\nThis content is inserted into the body before any configured contentEl is appended.
\n", - "linenr": 440, - "html_filename": "AbstractComponent.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-id", - "shortDoc": "The unique id of this component instance (defaults to an auto-assigned id). ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "id", - "owner": "Ext.AbstractComponent", - "doc": "The unique id of this component instance (defaults to an auto-assigned id).
\n\n\nIt should not be necessary to use this configuration except for singleton objects in your application.\nComponents created with an id may be accessed globally using Ext.getCmp.
\n\n\nInstead of using assigned ids, use the itemId config, and ComponentQuery which\nprovides selector-based searching for Sencha Components analogous to DOM querying. The Container\nclass contains shortcut methods to query its descendant Components by selector.
\n\n\nNote that this id will also be used as the element id for the containing HTML element\nthat is rendered to the page for this component. This allows you to write id-based CSS\nrules to style the specific instance of this component uniquely, and also to select\nsub-elements using this component's id as the parent.
\n\n\nNote: to avoid complications imposed by a unique id also see itemId
.
Note: to access the container of a Component see ownerCt
.
An itemId can be used as an alternative way to get a reference to a component\nwhen no object reference is available. Instead of using an id
with\nExt.getCmp, use itemId
with\nExt.container.Container.getComponent which will retrieve\nitemId
's or id's. Since itemId
's are an index to the\ncontainer's internal MixedCollection, the itemId
is scoped locally to the container --\navoiding potential conflicts with Ext.ComponentManager which requires a unique\nid
.
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\nAlso see id, Ext.container.Container.query
,\nExt.container.Container.down
and Ext.container.Container.child
.
Note: to access the container of an item see ownerCt.
\n\n", - "linenr": 66, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Object/Array", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-cfg-items", - "shortDoc": "A single item, or an array of child Components to be added to this container\n\n\nUnless configured with a layout, a Con...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "name": "items", - "owner": "Ext.container.AbstractContainer", - "doc": "A single item, or an array of child Components to be added to this container
\n\n\nUnless configured with a layout, a Container simply renders child Components serially into\nits encapsulating element and performs no sizing or positioning upon them.
\n
Example:
\n// specifying a single item\nitems: {...},\nlayout: 'fit', // The single items is sized to fit\n\n// specifying multiple items\nitems: [{...}, {...}],\nlayout: 'hbox', // The items are arranged horizontally\n
\nEach item may be:
\nIf a configuration object is specified, the actual type of Component to be\ninstantiated my be indicated by using the xtype option.
\nEvery Component class has its own xtype.
\nIf an xtype is not explicitly\nspecified, the defaultType for the Container is used, which by default is usually panel
.
Notes:
\nExt uses lazy rendering. Child Components will only be rendered\nshould it become necessary. Items are automatically laid out when they are first\nshown (no sizing is done while hidden), or in response to a doLayout call.
\nDo not specify contentEl
or \nhtml
with items
.
*Important: In order for child items to be correctly sized and\npositioned, typically a layout manager must be specified through\nthe layout
configuration option.
The sizing and positioning of child items is the responsibility of\n\n\n
the Container's layout manager which creates and manages the type of layout\nyou have in mind. For example:
\n\nIf the layout configuration is not explicitly specified for\na general purpose container (e.g. Container or Panel) the\ndefault layout manager will be used\nwhich does nothing but render child components sequentially into the\nContainer (no sizing or positioning will be performed in this situation).
\n\n\nlayout
may be specified as either as an Object or\n\n\n
as a String:
layout: {\n type: 'vbox',\n align: 'left'\n}\n
\n\ntype
The layout type to be used for this container. If not specified,\na default Ext.layout.container.Auto will be created and used.
\nValid layout type
values are:
Additional layout specific configuration properties may also be\nspecified. For complete details regarding the valid config options for\neach layout type, see the layout class corresponding to the type
\nspecified.
layout: {\n type: 'vbox',\n padding: '5',\n align: 'left'\n}\n
\nlayout
The layout type
to be used for this container (see list\nof valid layout type values above).
Additional layout specific configuration properties. For complete\ndetails regarding the valid config options for each layout type, see the\nlayout class corresponding to the layout
specified.
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\nDOM events from ExtJS Components
\n\nWhile some ExtJs 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:
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",
- "linenr": 102,
- "html_filename": "Observable.html"
- },
- {
- "type": "Ext.ComponentLoader/Object",
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "cfg",
- "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-loader",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js",
- "private": false,
- "name": "loader",
- "owner": "Ext.AbstractComponent",
- "doc": "A configuration object or an instance of a Ext.ComponentLoader to load remote\ncontent for this Component.
\n", - "linenr": 483, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Component2.html#Ext-Component-cfg-maintainFlex", - "shortDoc": "Only valid when a sibling element of a Splitter within a VBox or\nHBox layout. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "name": "maintainFlex", - "owner": "Ext.Component", - "doc": "Only valid when a sibling element of a Splitter within a VBox or\nHBox layout.
\n\n\nSpecifies that if an immediate sibling Splitter is moved, the Component on the other side is resized, and this\nComponent maintains its configured flex value.
\n\n", - "linenr": 259, - "html_filename": "Component2.html" - }, - { - "type": "Number/String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-margin", - "shortDoc": "Specifies the margin for this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "margin", - "owner": "Ext.AbstractComponent", - "doc": "Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or\nit can be a CSS style specification for each style, for example: '10 5 3 10'.
\n", - "linenr": 372, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-maxHeight", - "shortDoc": "The maximum value in pixels which this Component will set its height to. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "maxHeight", - "owner": "Ext.AbstractComponent", - "doc": "The maximum value in pixels which this Component will set its height to.
\n\n\nWarning: This will override any size management applied by layout managers.
\n\n", - "linenr": 472, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-maxWidth", - "shortDoc": "The maximum value in pixels which this Component will set its width to. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "maxWidth", - "owner": "Ext.AbstractComponent", - "doc": "The maximum value in pixels which this Component will set its width to.
\n\n\nWarning: This will override any size management applied by layout managers.
\n\n", - "linenr": 477, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Column2.html#Ext-grid-column-Column-cfg-menuDisabled", - "shortDoc": "True to disabled the column header menu containing sort/hide options. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "name": "menuDisabled", - "owner": "Ext.grid.column.Column", - "doc": "True to disabled the column header menu containing sort/hide options. Defaults to false.
\n", - "linenr": 141, - "html_filename": "Column2.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-minHeight", - "shortDoc": "The minimum value in pixels which this Component will set its height to. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "minHeight", - "owner": "Ext.AbstractComponent", - "doc": "The minimum value in pixels which this Component will set its height to.
\n\n\nWarning: This will override any size management applied by layout managers.
\n\n", - "linenr": 462, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-minWidth", - "shortDoc": "The minimum value in pixels which this Component will set its width to. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "minWidth", - "owner": "Ext.AbstractComponent", - "doc": "The minimum value in pixels which this Component will set its width to.
\n\n\nWarning: This will override any size management applied by layout managers.
\n\n", - "linenr": 467, - "html_filename": "AbstractComponent.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-overCls", - "shortDoc": "An optional extra CSS class that will be added to this component's Element when the mouse moves\nover the Element, and...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "overCls", - "owner": "Ext.AbstractComponent", - "doc": "An optional extra CSS class that will be added to this component's Element when the mouse moves\nover the Element, and removed when the mouse moves out. (defaults to ''). This can be\nuseful for adding customized 'active' or 'hover' styles to the component or any of its children using standard CSS rules.
\n", - "linenr": 295, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Number/String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-padding", - "shortDoc": "Specifies the padding for this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "padding", - "owner": "Ext.AbstractComponent", - "doc": "Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or\nit can be a CSS style specification for each style, for example: '10 5 3 10'.
\n", - "linenr": 366, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Object/Array", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-plugins", - "shortDoc": "An object or array of objects that will provide custom functionality for this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "plugins", - "owner": "Ext.AbstractComponent", - "doc": "An object or array of objects that will provide custom functionality for this component. The only\nrequirement for a valid plugin is that it contain an init method that accepts a reference of type Ext.Component.\nWhen a component is created, if any plugins are available, the component will call the init method on each\nplugin, passing a reference to itself. Each plugin can then call methods or respond to events on the\ncomponent as needed to provide its functionality.
\n", - "linenr": 512, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Object", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderSelectors", - "shortDoc": "An object containing properties specifying DomQuery selectors which identify child elements\ncreated by the render pro...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "renderSelectors", - "owner": "Ext.AbstractComponent", - "doc": "An object containing properties specifying DomQuery selectors which identify child elements\ncreated by the render process.
\n\nAfter 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.
For example, a Component which rendered an image, and description into its element might use the following properties\ncoded into its prototype:
\n\nrenderTpl: '<img src=\"{imageUrl}\" class=\"x-image-component-img\"><div class=\"x-image-component-desc\">{description}>/div<',\n\nrenderSelectors: {\n image: 'img.x-image-component-img',\n descEl: 'div.x-image-component-desc'\n}\n
\n\nAfter rendering, the Component would have a property image
referencing its child img
Element,\nand a property descEl
referencing the div
Element which contains the description.
Specify the id of the element, a DOM element or an existing Element that this component\nwill be rendered into.
\n\n\nSee render
also.
An XTemplate used to create the internal structure inside this Component's\nencapsulating Element.
\n\n\nYou do not normally need to specify this. For the base classes Ext.Component\nand Ext.container.Container, this defaults to null
which means that they will be initially rendered\nwith no internal structure; they render their Element empty. The more specialized ExtJS and Touch classes\nwhich use a more complex DOM structure, provide their own template definitions.
This is intended to allow the developer to create application-specific utility Components with customized\ninternal structure.
\n\n\nUpon rendering, any created child elements may be automatically imported into object properties using the\nrenderSelectors option.
\n\n", - "linenr": 164, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Column2.html#Ext-grid-column-Column-cfg-resizable", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "name": "resizable", - "owner": "Ext.grid.column.Column", - "doc": "This config has no effect on a grid column, please see fixed instead.
\n", - "linenr": 131, - "html_filename": "Column2.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Component2.html#Ext-Component-cfg-resizeHandles", - "shortDoc": "A valid Ext.resizer.Resizer handles config string (defaults to 'all'). ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "name": "resizeHandles", - "owner": "Ext.Component", - "doc": "A valid Ext.resizer.Resizer handles config string (defaults to 'all'). Only applies when resizable = true.
\n", - "linenr": 166, - "html_filename": "Component2.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Stateful.html#Ext-state-Stateful-cfg-saveBuffer", - "shortDoc": "A buffer to be applied if many state events are fired within\na short period. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", - "private": false, - "name": "saveBuffer", - "owner": "Ext.state.Stateful", - "doc": "A buffer to be applied if many state events are fired within\na short period. Defaults to 100.
\n", - "linenr": 74, - "html_filename": "Stateful.html" - }, - { - "type": "String/Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Floating.html#Ext-util-Floating-cfg-shadow", - "shortDoc": "Specifies whether the floating component should be given a shadow. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Floating.js", - "private": false, - "name": "shadow", - "owner": "Ext.util.Floating", - "doc": "Specifies whether the floating component should be given a shadow. Set to\ntrue to automatically create an Ext.Shadow, or a string indicating the\nshadow's display Ext.Shadow.mode. Set to false to disable the shadow.\n(Defaults to 'sides'.)
\n", - "linenr": 16, - "html_filename": "Floating.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Column2.html#Ext-grid-column-Column-cfg-sortable", - "shortDoc": "Optional. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "name": "sortable", - "owner": "Ext.grid.column.Column", - "doc": "Optional. true if sorting is to be allowed on this column.\nWhether local/remote sorting is used is specified in Ext.data.Store.remoteSort
.
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']).
See stateful
for an explanation of saving and\nrestoring object state.
The unique id for this object to use for state management purposes.
\n\nSee stateful for an explanation of saving and restoring state.
\n\n", - "linenr": 58, - "html_filename": "Stateful.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Stateful.html#Ext-state-Stateful-cfg-stateful", - "shortDoc": "A flag which causes the object to attempt to restore the state of\ninternal properties from a saved state on startup. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", - "private": false, - "name": "stateful", - "owner": "Ext.state.Stateful", - "doc": "A flag which causes the object to attempt to restore the state of\ninternal properties from a saved state on startup. The object must have\na stateId
for state to be managed.\nAuto-generated ids are not guaranteed to be stable across page loads and\ncannot be relied upon to save and restore the same state for a object.
\n
For state saving to work, the state manager's provider must have been\nset to an implementation of Ext.state.Provider which overrides the\nset and get\nmethods to save and recall name/value pairs. A built-in implementation,\nExt.state.CookieProvider is available.
\nTo set the state provider for the current page:
\nExt.state.Manager.setProvider(new Ext.state.CookieProvider({\n expires: new Date(new Date().getTime()+(1000*60*60*24*7)), //7 days from now\n}));\n
\nA stateful object attempts to save state when one of the events\nlisted in the stateEvents
configuration fires.
To save state, a stateful object first serializes its state by\ncalling getState
. By default, this function does\nnothing. The developer must provide an implementation which returns an\nobject hash which represents the restorable state of the object.
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
During construction, a stateful object attempts to restore\nits state by calling Ext.state.Manager.get passing the\nstateId
The resulting object is passed to applyState
.\nThe default implementation of applyState
simply copies\nproperties into the object, but a developer may override this to support\nmore behaviour.
You can perform extra processing on state save and restore by attaching\nhandlers to the beforestaterestore, staterestore,\nbeforestatesave and statesave events.
\n\n", - "linenr": 18, - "html_filename": "Stateful.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-style", - "shortDoc": "A custom style specification to be applied to this component's Element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "style", - "owner": "Ext.AbstractComponent", - "doc": "A custom style specification to be applied to this component's Element. Should be a valid argument to\nExt.core.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\n",
- "linenr": 321,
- "html_filename": "AbstractComponent.html"
- },
- {
- "type": "String",
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "cfg",
- "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-styleHtmlCls",
- "shortDoc": "The class that is added to the content target when you set styleHtmlContent to true. ...",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js",
- "private": false,
- "name": "styleHtmlCls",
- "owner": "Ext.AbstractComponent",
- "doc": "The class that is added to the content target when you set styleHtmlContent to true.\nDefaults to 'x-html'
\n", - "linenr": 455, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-styleHtmlContent", - "shortDoc": "True to automatically style the html inside the content target of this component (body for panels). ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "styleHtmlContent", - "owner": "Ext.AbstractComponent", - "doc": "True to automatically style the html inside the content target of this component (body for panels).\nDefaults to false.
\n", - "linenr": 448, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-cfg-suspendLayout", - "shortDoc": "If true, suspend calls to doLayout. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "name": "suspendLayout", - "owner": "Ext.container.AbstractContainer", - "doc": "If true, suspend calls to doLayout. Useful when batching multiple adds to a container and not passing them\nas multiple arguments or an array.
\n", - "linenr": 155, - "html_filename": "AbstractContainer2.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Column2.html#Ext-grid-column-Column-cfg-tdCls", - "shortDoc": "Optional. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "name": "tdCls", - "owner": "Ext.grid.column.Column", - "doc": "Optional. A CSS class names to apply to the table cells for this column.
\n\n", - "linenr": 188, - "html_filename": "Column2.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Column2.html#Ext-grid-column-Column-cfg-text", - "shortDoc": "Optional. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "name": "text", - "owner": "Ext.grid.column.Column", - "doc": "Optional. The header text to be used as innerHTML\n(html tags are accepted) to display in the Grid. Note: to\nhave a clickable header with no text displayed you can use the\ndefault of ' '.
\n", - "linenr": 106, - "html_filename": "Column2.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Component2.html#Ext-Component-cfg-toFrontOnShow", - "shortDoc": "True to automatically call toFront when the show method is called\non an already visible, floating component (default ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "name": "toFrontOnShow", - "owner": "Ext.Component", - "doc": "True to automatically call toFront when the show method is called\non an already visible, floating component (default is true
).
An data
and\ntplWriteMode
configurations.
The Ext.(X)Template method to use when\nupdating the content area of the Component. Defaults to 'overwrite'
\n(see Ext.XTemplate.overwrite
).
A set style for a component. Can be a string or an Array of multiple strings (UIs)
\n", - "linenr": 308, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "Container3.html#Ext-grid-header-Container-cfg-weight", - "shortDoc": "HeaderContainer overrides the default weight of 0 for all docked items to 100. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "name": "weight", - "owner": "Ext.grid.header.Container", - "doc": "HeaderContainer overrides the default weight of 0 for all docked items to 100.\nThis is so that it has more priority over things like toolbars.
\n", - "linenr": 28, - "html_filename": "Container3.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "cfg", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-width", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "width", - "owner": "Ext.AbstractComponent", - "doc": "The width of this component in pixels.
\n", - "linenr": 350, - "html_filename": "AbstractComponent.html" - } - ], - "method": [ - { - "deprecated": null, - "alias": null, - "href": "Component2.html#Ext-Component-method-constructor", - "tagname": "method", - "protected": false, - "shortDoc": "Creates new Component. ...", - "static": false, - "params": [ - { - "type": "Ext.core.Element/String/Object", - "optional": false, - "doc": "The configuration options may be specified as either:
\n\nit is set as the internal element and its id used as the component id
it is assumed to be the id of an existing element and is used as the component id
it is assumed to be a standard config object and is applied to the component
Creates new Component.
\n", - "owner": "Ext.Component", - "name": "Column", - "html_filename": "Component2.html", - "return": { - "type": "Object", - "doc": "\n" - }, - "linenr": 1 - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-add", - "shortDoc": "Adds Component(s) to this Container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "...Object/Array", - "optional": false, - "doc": "Either one or more Components to add or an Array of Components to add.\nSee items
for additional information.
Adds Component(s) to this Container.
\n\ndefaults
for details).add
event after the component has been added.If the Container is already rendered when add
\nis called, it will render the newly added Component into its content area.
If the Container was configured with a size-managing layout manager, the Container\nwill recalculate its internal layout at this time too.
\n\nNote that the default layout manager simply renders child Components sequentially into the content area and thereafter performs no sizing.
\n\nIf adding multiple new child Components, pass them as an array to the add
method, so that only one layout recalculation is performed.
tb = new Ext.toolbar.Toolbar({\n renderTo: document.body\n}); // toolbar is rendered\ntb.add([{text:'Button 1'}, {text:'Button 2'}]); // add multiple items. (defaultType for Toolbar is 'button')\n
\n\nComponents directly managed by the BorderLayout layout manager\nmay not be removed or added. See the Notes for BorderLayout\nfor more details.
\n", - "linenr": 423, - "return": { - "type": "Ext.Component/Array", - "doc": "The Components that were added.
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": { - "version": "4.0", - "text": "Replaced by addCls
\n\n\n\n", - "tagname": "deprecated", - "doc": "Adds a CSS class to the top level element representing this component." - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-addClass", - "shortDoc": "Adds a CSS class to the top level element representing this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The CSS class name to add
\n", - "name": "cls" - } - ], - "name": "addClass", - "owner": "Ext.AbstractComponent", - "doc": "Adds a CSS class to the top level element representing this component.
\n", - "linenr": 2328, - "return": { - "type": "Ext.Component", - "doc": "Returns the Component to allow method chaining.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-addCls", - "shortDoc": "Adds a CSS class to the top level element representing this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The CSS class name to add
\n", - "name": "cls" - } - ], - "name": "addCls", - "owner": "Ext.AbstractComponent", - "doc": "Adds a CSS class to the top level element representing this component.
\n", - "linenr": 2306, - "return": { - "type": "Ext.Component", - "doc": "Returns the Component to allow method chaining.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-addClsWithUI", - "shortDoc": "Adds a cls to the uiCls array, which will also call addUIClsToElement and adds\nto all elements of this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String/Array", - "optional": false, - "doc": "A string or an array of strings to add to the uiCls
\n", - "name": "cls" - }, - { - "type": "Object", - "optional": false, - "doc": "(Boolean) skip True to skip adding it to the class and do it later (via the return)
\n", - "name": "skip" - } - ], - "name": "addClsWithUI", - "owner": "Ext.AbstractComponent", - "doc": "Adds a cls to the uiCls array, which will also call addUIClsToElement and adds\nto all elements of this component.
\n", - "linenr": 1463, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-addEvents", - "shortDoc": "Adds the specified events to the list of events which this Observable may fire. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "Object/String", - "optional": false, - "doc": "Either an object with event names as properties with a value of true
or the first\nevent name string if multiple event names are being passed as separate parameters. Usage:
this.addEvents({\n storeloaded: true,\n storecleared: true\n});\n
\n",
- "name": "o"
- },
- {
- "type": "String...",
- "optional": false,
- "doc": "Optional additional event names if multiple event names are being passed as separate\nparameters. Usage:
\n\nthis.addEvents('storeloaded', 'storecleared');\n
\n",
- "name": "more"
- }
- ],
- "name": "addEvents",
- "owner": "Ext.util.Observable",
- "doc": "Adds the specified events to the list of events which this Observable may fire.
\n", - "linenr": 494, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-addListener", - "shortDoc": "Appends an event handler to this object. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The name of the event to listen for. May also be an object who's property names are\nevent names.
\n", - "name": "eventName" - }, - { - "type": "Function", - "optional": false, - "doc": "The method the event invokes. Will be called with arguments given to\nfireEvent plus the options
parameter described below.
(optional) The scope (this
reference) in which the handler function is executed. If\nomitted, defaults to the object which fired the event.
(optional) An object containing handler configuration.
\n\nNote: Unlike in ExtJS 3.x, the options object will also be passed as the last argument to every event handler.
\n\nThis object may contain any of the following properties:
\n\nscope : Object
\n\nThe scope (this
reference) in which the handler function is executed. If omitted, defaults to the object\nwhich fired the event.
delay : Number
\n\nThe number of milliseconds to delay the invocation of the handler after the event fires.
single : Boolean
\n\nTrue to add a handler to handle just the next firing of the event, and then remove itself.
buffer : Number
\n\nCauses the handler to be scheduled to run in an Ext.util.DelayedTask delayed by the specified number of\nmilliseconds. If the event fires again within that time, the original handler is not invoked, but the new\nhandler is scheduled in its place.
target : Observable
\n\nOnly call the handler if the event was fired on the target Observable, not if the event was bubbled up from a\nchild Observable.
element : String
\n\nThis option is only valid for listeners bound to Components. The name of a Component\nproperty which references an element to add a listener to.
\n\nThis option is useful during Component construction to add DOM event listeners to elements of\nComponents which will exist only after the Component is rendered.\nFor example, to add a click listener to a Panel's body:
\n\nnew Ext.panel.Panel({\n title: 'The title',\n listeners: {\n click: this.handlePanelClick,\n element: 'body'\n }\n});\n
Combining Options
\n\nUsing the options argument, it is possible to combine different types of listeners:
\n\nA delayed, one-time listener.
\n\nmyPanel.on('hide', this.handleClick, this, {\n single: true,\n delay: 100\n});\n
\n\nAttaching multiple handlers in 1 call
\n\nThe method also allows for a single argument to be passed which is a config object containing properties which\nspecify multiple events. For example:
\n\nmyGridPanel.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\nOne can also specify options for each event handler separately:
\n\nmyGridPanel.on({\n cellClick: {fn: this.onCellClick, scope: this, single: true},\n mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
\n",
- "name": "options"
- }
- ],
- "name": "addListener",
- "owner": "Ext.util.Observable",
- "doc": "Appends an event handler to this object.
\n", - "linenr": 278, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-addManagedListener", - "shortDoc": "Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "Observable/Element", - "optional": false, - "doc": "The item to which to add a listener/listeners.
\n", - "name": "item" - }, - { - "type": "Object/String", - "optional": false, - "doc": "The event name, or an object containing event name properties.
\n", - "name": "ename" - }, - { - "type": "Function", - "optional": true, - "doc": "(optional) If the ename
parameter was an event name, this is the handler function.
(optional) If the ename
parameter was an event name, this is the scope (this
reference)\nin which the handler function is executed.
(optional) If the ename
parameter was an event name, this is the\naddListener options.
Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.
\n", - "linenr": 156, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Stateful.html#Ext-state-Stateful-method-addStateEvents", - "shortDoc": "Add events that will trigger the state to be saved. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", - "private": false, - "params": [ - { - "type": "String/Array", - "optional": false, - "doc": "The event name or an array of event names.
\n", - "name": "events" - } - ], - "name": "addStateEvents", - "owner": "Ext.state.Stateful", - "doc": "Add events that will trigger the state to be saved.
\n", - "linenr": 159, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Stateful.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-addStatics", - "shortDoc": "Add / override static properties of this class. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "members" - } - ], - "name": "addStatics", - "owner": "Ext.Base", - "doc": "Add / override static properties of this class.
\n\nExt.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",
- "linenr": 388,
- "return": {
- "type": "Ext.Base",
- "doc": "this
\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-addUIClsToElement", - "shortDoc": "Method which adds a specified UI + uiCls to the components element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The UI to remove from the element
\n", - "name": "ui" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "force" - } - ], - "name": "addUIClsToElement", - "owner": "Ext.AbstractComponent", - "doc": "Method which adds a specified UI + uiCls to the components element.\nCan be overridden to remove the UI from more than just the components element.
\n", - "linenr": 1534, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-afterComponentLayout", - "shortDoc": " ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Number", - "optional": false, - "doc": "The box-adjusted width that was set
\n", - "name": "adjWidth" - }, - { - "type": "Number", - "optional": false, - "doc": "The box-adjusted height that was set
\n", - "name": "adjHeight" - }, - { - "type": "Boolean", - "optional": false, - "doc": "Whether or not the height/width are stored on the component permanently
\n", - "name": "isSetSize" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "Container requesting the layout. Only used when isSetSize is false.
\n", - "name": "callingContainer" - } - ], - "name": "afterComponentLayout", - "owner": "Ext.AbstractComponent", - "doc": "\n", - "linenr": 2699, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Floating.html#Ext-util-Floating-method-alignTo", - "shortDoc": "Aligns this floating Component to the specified element ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Floating.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "The element or Ext.Component to align to. If passing a component, it must\nbe a omponent instance. If a string id is passed, it will be used as an element id.
\n", - "name": "element" - }, - { - "type": "String", - "optional": false, - "doc": "(optional, defaults to \"tl-bl?\") The position to align to (see Ext.core.Element.alignTo for more details).
\n", - "name": "position" - }, - { - "type": "Array", - "optional": true, - "doc": "(optional) Offset the positioning by [x, y]
\n", - "name": "offsets" - } - ], - "name": "alignTo", - "owner": "Ext.util.Floating", - "doc": "Aligns this floating Component to the specified element
\n", - "linenr": 173, - "return": { - "type": "Component", - "doc": "this
\n" - }, - "html_filename": "Floating.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Animate.html#Ext-util-Animate-method-animate", - "shortDoc": "Perform custom animation on this object. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Animate.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "An object containing properties which describe the animation's start and end states, and the timeline of the animation.
\n", - "name": "config" - } - ], - "name": "animate", - "owner": "Ext.util.Animate", - "doc": "Perform custom animation on this object.
\n
This method is applicable to both the Component class and the Element class.\nIt performs animated transitions of certain properties of this object over a specified timeline.
\nThe sole parameter is an object which specifies start property values, end property values, and properties which\ndescribe the timeline. Of the properties listed below, only to
is mandatory.
Properties include
from
to
duration
easing
\n- ease
\n- easeIn
\n- easeOut
\n- easeInOut
\n- backIn
\n- backOut
\n- elasticIn
\n- elasticOut
\n- bounceIn
\n- bounceOut
\n
keyframes
listeners
beforeanimate
event or the afteranimate
event.from
, to
, and keyframe
objects:x
y
left
left
value. Units must be supplied.top
top
value. Units must be supplied.width
width
value. Units must be supplied.height
height
value. Units must be supplied.scrollLeft
scrollLeft
value.scrollTop
scrollLeft
value.opacity
opacity
value. This must be a value between 0
and 1
.Be aware than animating an Element which is being used by an Ext Component without in some way informing the Component about the changed element state\nwill result in incorrect Component behaviour. This is because the Component will be using the old state of the element. To avoid this problem, it is now possible to\ndirectly animate certain properties of Components.
\nfrom
, to
, and keyframe
objects:x
y
left
left
value in pixels.top
top
value in pixels.width
width
value in pixels.width
width
value in pixels.dynamic
For example, to animate a Window to a new size, ensuring that its internal layout, and any shadow is correct:
\nmyWindow = 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
\nFor performance reasons, by default, the internal layout is only updated when the Window reaches its final \"to\"
size. If dynamic updating of the Window's child\nComponents is required, then configure the animation with dynamic: true
and the two child items will maintain their proportions during the animation.
this
\n" - }, - "html_filename": "Animate.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Stateful.html#Ext-state-Stateful-method-applyState", - "shortDoc": "Applies the state to the object. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "The state
\n", - "name": "state" - } - ], - "name": "applyState", - "owner": "Ext.state.Stateful", - "doc": "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", - "linenr": 225, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Stateful.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-beforeComponentLayout", - "shortDoc": "Occurs before componentLayout is run. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Number", - "optional": false, - "doc": "The box-adjusted width that was set
\n", - "name": "adjWidth" - }, - { - "type": "Number", - "optional": false, - "doc": "The box-adjusted height that was set
\n", - "name": "adjHeight" - }, - { - "type": "Boolean", - "optional": false, - "doc": "Whether or not the height/width are stored on the component permanently
\n", - "name": "isSetSize" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "Container requesting sent the layout. Only used when isSetSize is false.
\n", - "name": "callingContainer" - } - ], - "name": "beforeComponentLayout", - "owner": "Ext.AbstractComponent", - "doc": "Occurs before componentLayout is run. Returning false from this method will prevent the componentLayout\nfrom being executed.
\n", - "linenr": 2709, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-beforeLayout", - "shortDoc": "Occurs before componentLayout is run. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - - ], - "name": "beforeLayout", - "owner": "Ext.container.AbstractContainer", - "doc": "Occurs before componentLayout is run. Returning false from this method will prevent the containerLayout\nfrom being executed.
\n", - "linenr": 855, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-bubble", - "shortDoc": "Bubbles up the component/container heirarchy, calling the specified function with each component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "Function", - "optional": false, - "doc": "The function to call
\n", - "name": "fn" - }, - { - "type": "Object", - "optional": true, - "doc": "(optional) The scope of the function (defaults to current node)
\n", - "name": "scope" - }, - { - "type": "Array", - "optional": true, - "doc": "(optional) The args to call the function with (default to passing the current component)
\n", - "name": "args" - } - ], - "name": "bubble", - "owner": "Ext.Component", - "doc": "Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of\nfunction call will be the scope provided or the current component. The arguments to the function\nwill be the args provided or the current component. If the function returns false at any point,\nthe bubble is stopped.
\n", - "linenr": 1007, - "return": { - "type": "Ext.Component", - "doc": "this
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-callOverridden", - "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n constructo...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Array/Arguments", - "optional": false, - "doc": "The arguments, either an array or the arguments
object
Call the original method that was previously overridden with Ext.Base.override
\n\nExt.define('My.Cat', {\n constructor: function() {\n alert(\"I'm a cat!\");\n\n return this;\n }\n});\n\nMy.Cat.override({\n constructor: function() {\n alert(\"I'm going to be a cat!\");\n\n var instance = this.callOverridden();\n\n alert(\"Meeeeoooowwww\");\n\n return instance;\n }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n // alerts \"I'm a cat!\"\n // alerts \"Meeeeoooowwww\"\n
\n",
- "linenr": 269,
- "return": {
- "type": "Mixed",
- "doc": "Returns the result after calling the overridden method
\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": true, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-callParent", - "shortDoc": "Call the parent's overridden method. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Array/Arguments", - "optional": false, - "doc": "The arguments, either an array or the arguments
object\nfrom the current method, for example: this.callParent(arguments)
Call the parent's overridden method. For example:
\n\nExt.define('My.own.A', {\n constructor: function(test) {\n alert(test);\n }\n});\n\nExt.define('My.own.B', {\n extend: 'My.own.A',\n\n constructor: function(test) {\n alert(test);\n\n this.callParent([test + 1]);\n }\n});\n\nExt.define('My.own.C', {\n extend: 'My.own.B',\n\n constructor: function() {\n alert(\"Going to call parent's overriden constructor...\");\n\n this.callParent(arguments);\n }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n // alerts '2', then alerts '3'\n
\n",
- "linenr": 124,
- "return": {
- "type": "Mixed",
- "doc": "Returns the result from the superclass' method
\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-capture", - "shortDoc": "Starts capture on the specified Observable. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "Observable", - "optional": false, - "doc": "The Observable to capture events from.
\n", - "name": "o" - }, - { - "type": "Function", - "optional": false, - "doc": "The function to call when an event is fired.
\n", - "name": "fn" - }, - { - "type": "Object", - "optional": true, - "doc": "(optional) The scope (this
reference) in which the function is executed. Defaults to\nthe Observable firing the event.
Starts capture on the specified Observable. All events will be passed to the supplied function with the event\nname + standard signature of the event before the event is fired. If the supplied function returns false,\nthe event will not fire.
\n", - "linenr": 54, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-cascade", - "shortDoc": "Cascades down the component/container heirarchy from this component (passed in the first call), calling the specified...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Function", - "optional": false, - "doc": "The function to call
\n", - "name": "fn" - }, - { - "type": "Object", - "optional": true, - "doc": "(optional) The scope of the function (defaults to current component)
\n", - "name": "scope" - }, - { - "type": "Array", - "optional": true, - "doc": "(optional) The args to call the function with. The current component always passed as the last argument.
\n", - "name": "args" - } - ], - "name": "cascade", - "owner": "Ext.container.AbstractContainer", - "doc": "Cascades down the component/container heirarchy from this component (passed in the first call), calling the specified function with\neach component. The scope (this
reference) of the\nfunction call will be the scope provided or the current component. The arguments to the function\nwill be the args provided or the current component. If the function returns false at any point,\nthe cascade is stopped on that branch.
this
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Floating.html#Ext-util-Floating-method-center", - "shortDoc": "Center this Component in its container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Floating.js", - "private": false, - "params": [ - - ], - "name": "center", - "owner": "Ext.util.Floating", - "doc": "Center this Component in its container.
\n", - "linenr": 251, - "return": { - "type": "Component", - "doc": "this
\n" - }, - "html_filename": "Floating.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-child", - "shortDoc": "Retrieves the first direct child of this container which matches the passed selector. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "An Ext.ComponentQuery selector
\n", - "name": "selector" - } - ], - "name": "child", - "owner": "Ext.container.AbstractContainer", - "doc": "Retrieves the first direct child of this container which matches the passed selector.\nThe passed in selector must comply with an Ext.ComponentQuery selector.
\n", - "linenr": 784, - "return": { - "type": "void", - "doc": "Ext.Component
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-clearListeners", - "shortDoc": "Removes all listeners for this object including the managed listeners ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - - ], - "name": "clearListeners", - "owner": "Ext.util.Observable", - "doc": "Removes all listeners for this object including the managed listeners
\n", - "linenr": 425, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners", - "shortDoc": "Removes all managed listeners for this object. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - - ], - "name": "clearManagedListeners", - "owner": "Ext.util.Observable", - "doc": "Removes all managed listeners for this object.
\n", - "linenr": 454, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-cloneConfig", - "shortDoc": "Clone the current component using the original config values passed into this instance by default. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "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", - "name": "overrides" - } - ], - "name": "cloneConfig", - "owner": "Ext.Component", - "doc": "Clone the current component using the original config values passed into this instance by default.
\n", - "linenr": 947, - "return": { - "type": "Ext.Component", - "doc": "clone The cloned copy of this component
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-create", - "shortDoc": "Create a new instance of this Class. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - - ], - "name": "create", - "owner": "Ext.Base", - "doc": "Create a new instance of this Class.
\n\nExt.define('My.cool.Class', {\n ...\n});\n\nMy.cool.Class.create({\n someConfig: true\n});\n
\n\nAll parameters are passed to the constructor of the class.
\n", - "linenr": 329, - "return": { - "type": "Object", - "doc": "the created instance.
\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-createAlias", - "shortDoc": "Create aliases for existing prototype methods. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "String/Object", - "optional": false, - "doc": "The new method name, or an object to set multiple aliases. See\nflexSetter
\n", - "name": "alias" - }, - { - "type": "String/Object", - "optional": false, - "doc": "The original method name
\n", - "name": "origin" - } - ], - "name": "createAlias", - "owner": "Ext.Base", - "doc": "Create aliases for existing prototype methods. Example:
\n\nExt.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",
- "linenr": 648,
- "return": {
- "type": "void",
- "doc": "\n"
- },
- "html_filename": "Base3.html"
- },
- {
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "method",
- "href": "AbstractComponent.html#Ext-AbstractComponent-method-destroy",
- "shortDoc": "Destroys the Component. ...",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js",
- "private": false,
- "params": [
-
- ],
- "name": "destroy",
- "owner": "Ext.AbstractComponent",
- "doc": "Destroys the Component.
\n", - "linenr": 2891, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-disable", - "shortDoc": "Disable the component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": false, - "doc": "Passing true, will supress the 'disable' event from being fired.
\n", - "name": "silent" - } - ], - "name": "disable", - "owner": "Ext.AbstractComponent", - "doc": "Disable the component.
\n", - "linenr": 2245, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-doAutoRender", - "shortDoc": "Handles autoRender. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "doAutoRender", - "owner": "Ext.AbstractComponent", - "doc": "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", - "linenr": 920, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-doComponentLayout", - "shortDoc": "This method needs to be called whenever you change something on this component that requires the Component's\nlayout t...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "width" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "height" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "isSetSize" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "callingContainer" - } - ], - "name": "doComponentLayout", - "owner": "Ext.AbstractComponent", - "doc": "This method needs to be called whenever you change something on this component that requires the Component's\nlayout to be recalculated.
\n", - "linenr": 2630, - "return": { - "type": "Ext.container.Container", - "doc": "this
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Floating.html#Ext-util-Floating-method-doConstrain", - "shortDoc": "Moves this floating Component into a constrain region. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Floating.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "Optional. The Element or Region into which this Component is to be constrained.
\n", - "name": "constrainTo" - } - ], - "name": "doConstrain", - "owner": "Ext.util.Floating", - "doc": "Moves this floating Component into a constrain region.
\n\n\nBy default, this Component is constrained to be within the container it was added to, or the element\nit was rendered to.
\n\n\nAn alternative constraint may be passed.
\n\n", - "linenr": 135, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Floating.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-doLayout", - "shortDoc": "Manually force this container's layout to be recalculated. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - - ], - "name": "doLayout", - "owner": "Ext.container.AbstractContainer", - "doc": "Manually force this container's layout to be recalculated. The framwork uses this internally to refresh layouts\nform most cases.
\n", - "linenr": 321, - "return": { - "type": "Ext.container.Container", - "doc": "this
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-down", - "shortDoc": "Retrieves the first descendant of this container which matches the passed selector. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "An Ext.ComponentQuery selector
\n", - "name": "selector" - } - ], - "name": "down", - "owner": "Ext.container.AbstractContainer", - "doc": "Retrieves the first descendant of this container which matches the passed selector.\nThe passed in selector must comply with an Ext.ComponentQuery selector.
\n", - "linenr": 794, - "return": { - "type": "void", - "doc": "Ext.Component
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-enable", - "shortDoc": "Enable the component ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": false, - "doc": "Passing false will supress the 'enable' event from being fired.
\n", - "name": "silent" - } - ], - "name": "enable", - "owner": "Ext.AbstractComponent", - "doc": "Enable the component
\n", - "linenr": 2222, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-enableBubble", - "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "String/[String]", - "optional": false, - "doc": "The event name to bubble, or an Array of event names.
\n", - "name": "events" - } - ], - "name": "enableBubble", - "owner": "Ext.util.Observable", - "doc": "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.
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\nExample:
\n\nExt.override(Ext.form.field.Base, {\n // Add functionality to Field's initComponent to enable the change event to bubble\n initComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n this.enableBubble('change');\n }),\n\n // We know that we want Field's events to bubble directly to the FormPanel.\n getBubbleTarget : function() {\n if (!this.formPanel) {\n this.formPanel = this.findParentByType('form');\n }\n return this.formPanel;\n }\n});\n\nvar myForm = new Ext.formPanel({\n title: 'User Details',\n items: [{\n ...\n }],\n listeners: {\n change: function() {\n // Title goes red if form has been modified.\n myForm.header.setStyle('color', 'red');\n }\n }\n});\n
\n",
- "linenr": 609,
- "return": {
- "type": "void",
- "doc": "\n"
- },
- "html_filename": "Observable.html"
- },
- {
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "method",
- "href": "AbstractComponent.html#Ext-AbstractComponent-method-findLayoutController",
- "shortDoc": "This method finds the topmost active layout who's processing will eventually determine the size and position of this\n...",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js",
- "private": false,
- "params": [
-
- ],
- "name": "findLayoutController",
- "owner": "Ext.AbstractComponent",
- "doc": "This method finds the topmost active layout who's processing will eventually determine the size and position of this\nComponent.
\n
This method is useful when dynamically adding Components into Containers, and some processing must take place after the\nfinal sizing and positioning of the Component has been performed.
\n\n", - "linenr": 876, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-findParentBy", - "shortDoc": "Find a container above this component at any level by a custom function. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "Function", - "optional": false, - "doc": "The custom function to call with the arguments (container, this component).
\n", - "name": "fn" - } - ], - "name": "findParentBy", - "owner": "Ext.Component", - "doc": "Find a container above this component at any level by a custom function. If the passed function returns\ntrue, the container will be returned.
\n", - "linenr": 978, - "return": { - "type": "Ext.container.Container", - "doc": "The first Container for which the custom function returns true
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-findParentByType", - "shortDoc": "Find a container above this component at any level by xtype or class\n\n\nSee also the up method. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "String/Class", - "optional": false, - "doc": "The xtype string for a component, or the class of the component directly
\n", - "name": "xtype" - } - ], - "name": "findParentByType", - "owner": "Ext.Component", - "doc": "Find a container above this component at any level by xtype or class
\n\n\nSee also the up method.
\n\n", - "linenr": 992, - "return": { - "type": "Ext.container.Container", - "doc": "The first Container which matches the given xtype or class
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-fireEvent", - "shortDoc": "Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The name of the event to fire.
\n", - "name": "eventName" - }, - { - "type": "Object...", - "optional": false, - "doc": "Variable number of parameters are passed to handlers.
\n", - "name": "args" - } - ], - "name": "fireEvent", - "owner": "Ext.util.Observable", - "doc": "Fires the specified event with the passed parameters (minus the event name, plus the options
object passed\nto addListener).
An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget) by\ncalling enableBubble.
\n", - "linenr": 233, - "return": { - "type": "Boolean", - "doc": "returns false if any of the handlers return false otherwise it returns true.
\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-focus", - "shortDoc": "Try to focus this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": true, - "doc": "(optional) If applicable, true to also select the text in this component
\n", - "name": "selectText" - }, - { - "type": "Boolean/Number", - "optional": true, - "doc": "(optional) Delay the focus this number of milliseconds (true for 10 milliseconds).
\n", - "name": "delay" - } - ], - "name": "focus", - "owner": "Ext.Component", - "doc": "Try to focus this component.
\n", - "linenr": 856, - "return": { - "type": "Ext.Component", - "doc": "this
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-forceComponentLayout", - "shortDoc": "Forces this component to redo its componentLayout. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "forceComponentLayout", - "owner": "Ext.AbstractComponent", - "doc": "Forces this component to redo its componentLayout.
\n", - "linenr": 2673, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Animate.html#Ext-util-Animate-method-getActiveAnimation", - "shortDoc": "Returns thq current animation if this object has any effects actively running or queued, else returns false. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Animate.js", - "private": false, - "params": [ - - ], - "name": "getActiveAnimation", - "owner": "Ext.util.Animate", - "doc": "Returns thq current animation if this object has any effects actively running or queued, else returns false.
\n", - "linenr": 377, - "return": { - "type": "Mixed", - "doc": "anim if element has active effects, else false
\n" - }, - "html_filename": "Animate.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-getBox", - "shortDoc": "Gets the current box measurements of the component's underlying element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": true, - "doc": "(optional) If true the element's left and top are returned instead of page XY (defaults to false)
\n", - "name": "local" - } - ], - "name": "getBox", - "owner": "Ext.Component", - "doc": "Gets the current box measurements of the component's underlying element.
\n", - "linenr": 541, - "return": { - "type": "Object", - "doc": "box An object in the format {x, y, width, height}
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getBubbleTarget", - "shortDoc": "Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "getBubbleTarget", - "owner": "Ext.AbstractComponent", - "doc": "Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.
\n", - "linenr": 2443, - "return": { - "type": "Ext.container.Container", - "doc": "the Container which owns this Component.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Container2.html#Ext-container-Container-method-getChildByElement", - "shortDoc": "Return the immediate child Component in which the passed element is located. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/container/Container.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "The element to test.
\n", - "name": "el" - } - ], - "name": "getChildByElement", - "owner": "Ext.container.Container", - "doc": "Return the immediate child Component in which the passed element is located.
\n", - "linenr": 160, - "return": { - "type": "Component", - "doc": "The child item which contains the passed element.
\n" - }, - "html_filename": "Container2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Container3.html#Ext-grid-header-Container-method-getColumnCount", - "shortDoc": "Returns the number of grid columns descended from this HeaderContainer. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - - ], - "name": "getColumnCount", - "owner": "Ext.grid.header.Container", - "doc": "Returns the number of grid columns descended from this HeaderContainer.\nGroup Columns are HeaderContainers. All grid columns are returned, including hidden ones.
\n", - "linenr": 629, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Container3.html#Ext-grid-header-Container-method-getColumnMenu", - "shortDoc": "Returns an array of menu CheckItems corresponding to all immediate children of the passed Container which have been c...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "headerContainer" - } - ], - "name": "getColumnMenu", - "owner": "Ext.grid.header.Container", - "doc": "Returns an array of menu CheckItems corresponding to all immediate children of the passed Container which have been configured as hideable.
\n", - "linenr": 543, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-getComponent", - "shortDoc": "Examines this container's items property\nand gets a direct child component of this container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "String/Number", - "optional": false, - "doc": "This parameter may be any of the following:
\n\nFor additional information see Ext.util.MixedCollection.get.\n\n", - "name": "comp" - } - ], - "name": "getComponent", - "owner": "Ext.container.AbstractContainer", - "doc": "
Examines this container's items
property\nand gets a direct child component of this container.
Ext.Component The component (if found).
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Column2.html#Ext-grid-column-Column-method-getEditor", - "shortDoc": "Retrieves the editing field for editing associated with this header. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "The Model instance being edited.
\n", - "name": "record" - }, - { - "type": "Mixed", - "optional": false, - "doc": "An object representing a default field to be created
\n", - "name": "defaultField" - } - ], - "name": "getEditor", - "owner": "Ext.grid.column.Column", - "doc": "Retrieves the editing field for editing associated with this header. Returns false if there\nis no field associated with the Header the method will return false. If the\nfield has not been instantiated it will be created. Note: These methods only has an implementation\nif a Editing plugin has been enabled on the grid.
\n", - "linenr": 721, - "return": { - "type": "Ext.form.field.Field", - "doc": "field
\n" - }, - "html_filename": "Column2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getEl", - "shortDoc": "Retrieves the top level element representing this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "getEl", - "owner": "Ext.AbstractComponent", - "doc": "Retrieves the top level element representing this component.
\n", - "linenr": 2059, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Container3.html#Ext-grid-header-Container-method-getFullWidth", - "shortDoc": "Gets the full width of all columns that are visible. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "flushCache" - } - ], - "name": "getFullWidth", - "owner": "Ext.grid.header.Container", - "doc": "Gets the full width of all columns that are visible.
\n", - "linenr": 637, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Container3.html#Ext-grid-header-Container-method-getGridColumns", - "shortDoc": "Returns an array of all columns which map to Store fields. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": false, - "doc": "If omitted, the cached set of columns will be returned. Pass true to refresh the cache.
\n", - "name": "refreshCache" - } - ], - "name": "getGridColumns", - "owner": "Ext.grid.header.Container", - "doc": "Returns an array of all columns which map to Store fields. This goes down to the lowest column header\nlevel, and does not return grouped headers which contain sub headers.
\n", - "linenr": 689, - "return": { - "type": "Array", - "doc": "\n" - }, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Container3.html#Ext-grid-header-Container-method-getHeaderAtIndex", - "shortDoc": "Get a leaf level header by index regardless of what the nesting\nstructure is. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "index" - } - ], - "name": "getHeaderAtIndex", - "owner": "Ext.grid.header.Container", - "doc": "Get a leaf level header by index regardless of what the nesting\nstructure is.
\n", - "linenr": 721, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Container3.html#Ext-grid-header-Container-method-getHeaderIndex", - "shortDoc": "Get the index of a leaf level header regardless of what the nesting\nstructure is. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "header" - } - ], - "name": "getHeaderIndex", - "owner": "Ext.grid.header.Container", - "doc": "Get the index of a leaf level header regardless of what the nesting\nstructure is.
\n", - "linenr": 712, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getHeight", - "shortDoc": "Gets the current height of the component's underlying element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "getHeight", - "owner": "Ext.AbstractComponent", - "doc": "Gets the current height of the component's underlying element.
\n", - "linenr": 2798, - "return": { - "type": "Number", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getId", - "shortDoc": "Retrieves the id of this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "getId", - "owner": "Ext.AbstractComponent", - "doc": "Retrieves the id of this component.\nWill autogenerate an id if one has not already been set.
\n", - "linenr": 2047, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Column2.html#Ext-grid-column-Column-method-getIndex", - "shortDoc": "Returns the true grid column index assiciated with this Column only if this column is a base level Column. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "params": [ - - ], - "name": "getIndex", - "owner": "Ext.grid.column.Column", - "doc": "Returns the true grid column index assiciated with this Column only if this column is a base level Column.\nIf it is a group column, it returns false
Index, element id or element you want\nto put this component before.
\n", - "name": "position" - } - ], - "name": "getInsertPosition", - "owner": "Ext.AbstractComponent", - "doc": "This function takes the position argument passed to onRender and returns a\nDOM element that you can use in the insertBefore.
\n", - "linenr": 1674, - "return": { - "type": "HTMLElement", - "doc": "DOM element that you can use in the insertBefore
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-getLayout", - "shortDoc": "Returns the layout instance currently associated with this Container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - - ], - "name": "getLayout", - "owner": "Ext.container.AbstractContainer", - "doc": "Returns the layout instance currently associated with this Container.\nIf a layout has not been instantiated yet, that is done first
\n", - "linenr": 307, - "return": { - "type": "Ext.layout.container.AbstractContainer", - "doc": "The layout
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getLoader", - "shortDoc": "Gets the Ext.ComponentLoader for this Component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "getLoader", - "owner": "Ext.AbstractComponent", - "doc": "Gets the Ext.ComponentLoader for this Component.
\n", - "linenr": 2806, - "return": { - "type": "Ext.ComponentLoader", - "doc": "The loader instance, null if it doesn't exist.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Container3.html#Ext-grid-header-Container-method-getMenuItems", - "shortDoc": "Returns an array of menu items to be placed into the shared menu\nacross all headers in this header container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - - ], - "name": "getMenuItems", - "owner": "Ext.grid.header.Container", - "doc": "Returns an array of menu items to be placed into the shared menu\nacross all headers in this header container.
\n", - "linenr": 491, - "return": { - "type": "Array", - "doc": "menuItems
\n" - }, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-getName", - "shortDoc": "Get the current class' name in string format. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - - ], - "name": "getName", - "owner": "Ext.Base", - "doc": "Get the current class' name in string format.
\n\nExt.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",
- "linenr": 631,
- "return": {
- "type": "String",
- "doc": "className
\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getPlugin", - "shortDoc": "Retrieves a plugin by its pluginId which has been bound to this\ncomponent. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "pluginId" - } - ], - "name": "getPlugin", - "owner": "Ext.AbstractComponent", - "doc": "Retrieves a plugin by its pluginId which has been bound to this\ncomponent.
\n", - "linenr": 2934, - "return": { - "type": "Ext.AbstractPlugin", - "doc": "pluginInstance
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-getPosition", - "shortDoc": "Gets the current XY position of the component's underlying element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": true, - "doc": "(optional) If true the element's left and top are returned instead of page XY (defaults to false)
\n", - "name": "local" - } - ], - "name": "getPosition", - "owner": "Ext.Component", - "doc": "Gets the current XY position of the component's underlying element.
\n", - "linenr": 606, - "return": { - "type": "Array", - "doc": "The XY position of the element (e.g., [100, 200])
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getSize", - "shortDoc": "Gets the current size of the component's underlying element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "getSize", - "owner": "Ext.AbstractComponent", - "doc": "Gets the current size of the component's underlying element.
\n", - "linenr": 2782, - "return": { - "type": "Object", - "doc": "An object containing the element's size {width: (element width), height: (element height)}
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Column2.html#Ext-grid-column-Column-method-getSortParam", - "shortDoc": "Returns the parameter to sort upon when sorting this header. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "params": [ - - ], - "name": "getSortParam", - "owner": "Ext.grid.column.Column", - "doc": "Returns the parameter to sort upon when sorting this header. By default\nthis returns the dataIndex and will not need to be overriden in most cases.
\n", - "linenr": 544, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Column2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getState", - "shortDoc": "The supplied default state gathering method for the AbstractComponent class. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "getState", - "owner": "Ext.AbstractComponent", - "doc": "The supplied default state gathering method for the AbstractComponent class.\nThis method returns dimension setings such asflex
, anchor
, width
\nand height
along with collapsed
state.\n\nSubclasses 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\nNote that Component state will only be saved if the Component has a stateId and there as a StateProvider\nconfigured for the document.
\n\n", - "linenr": 750, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Stateful.html#Ext-state-Stateful-method-getStateId", - "shortDoc": "Gets the state id for this object. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", - "private": false, - "params": [ - - ], - "name": "getStateId", - "owner": "Ext.state.Stateful", - "doc": "Gets the state id for this object.
\n", - "linenr": 237, - "return": { - "type": "String", - "doc": "The state id, null if not found.
\n" - }, - "html_filename": "Stateful.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Container3.html#Ext-grid-header-Container-method-getVisibleGridColumns", - "shortDoc": "Returns an array of the visible columns in the grid. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": false, - "doc": "If omitted, the cached set of columns will be returned. Pass true to refresh the cache.
\n", - "name": "refreshCache" - } - ], - "name": "getVisibleGridColumns", - "owner": "Ext.grid.header.Container", - "doc": "Returns an array of the visible columns in the grid. This goes down to the lowest column header\nlevel, and does not return grouped headers which contain sub headers.
\n", - "linenr": 679, - "return": { - "type": "Array", - "doc": "\n" - }, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getWidth", - "shortDoc": "Gets the current width of the component's underlying element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "getWidth", - "owner": "Ext.AbstractComponent", - "doc": "Gets the current width of the component's underlying element.
\n", - "linenr": 2790, - "return": { - "type": "Number", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-getXType", - "shortDoc": "Gets the xtype for this component as registered with Ext.ComponentManager. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - - ], - "name": "getXType", - "owner": "Ext.Component", - "doc": "Gets the xtype for this component as registered with Ext.ComponentManager. For a list of all\navailable xtypes, see the Ext.Component header. Example usage:
\n\nvar t = new Ext.form.field.Text();\nalert(t.getXType()); // alerts 'textfield'\n
\n\n",
- "linenr": 965,
- "return": {
- "type": "String",
- "doc": "The xtype
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getXTypes", - "shortDoc": "Returns this Component's xtype hierarchy as a slash-delimited string. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "getXTypes", - "owner": "Ext.AbstractComponent", - "doc": "Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all\navailable xtypes, see the Ext.Component header.
\n\n\nIf using your own subclasses, be aware that a Component must register its own xtype\nto participate in determination of inherited xtypes.
\n\n\nExample usage:
\n\n\nvar t = new Ext.form.field.Text();\nalert(t.getXTypes()); // alerts 'component/field/textfield'\n
\n\n",
- "linenr": 2105,
- "return": {
- "type": "String",
- "doc": "The xtype hierarchy string
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": { - "version": "4.0", - "text": "Replaced by getActiveAnimation
\n\n\n\n", - "tagname": "deprecated", - "doc": "Returns thq current animation if this object has any effects actively running or queued, else returns false." - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Animate.html#Ext-util-Animate-method-hasActiveFx", - "shortDoc": "Returns thq current animation if this object has any effects actively running or queued, else returns false. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Animate.js", - "private": false, - "params": [ - - ], - "name": "hasActiveFx", - "owner": "Ext.util.Animate", - "doc": "Returns thq current animation if this object has any effects actively running or queued, else returns false.
\n", - "linenr": 369, - "return": { - "type": "Mixed", - "doc": "anim if element has active effects, else false
\n" - }, - "html_filename": "Animate.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-hasListener", - "shortDoc": "Checks to see if this object has any listeners for a specified event ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The name of the event to check for
\n", - "name": "eventName" - } - ], - "name": "hasListener", - "owner": "Ext.util.Observable", - "doc": "Checks to see if this object has any listeners for a specified event
\n", - "linenr": 530, - "return": { - "type": "Boolean", - "doc": "True if the event is being listened for, else false
\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-hasUICls", - "shortDoc": "Checks if there is currently a specified uiCls ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The cls to check
\n", - "name": "cls" - } - ], - "name": "hasUICls", - "owner": "Ext.AbstractComponent", - "doc": "Checks if there is currently a specified uiCls
\n", - "linenr": 1523, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-hide", - "shortDoc": "Hides this Component, setting it to invisible using the configured hideMode. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "String/Element/Component", - "optional": false, - "doc": "Optional, and only valid for floating Components such as\nWindows or ToolTips, or regular Components which have been configured\nwith floating: true
..\nThe target to which the Component should animate while hiding (defaults to null with no animation)
(optional) A callback function to call after the Component is hidden.
\n", - "name": "callback" - }, - { - "type": "Object", - "optional": true, - "doc": "(optional) The scope (this
reference) in which the callback is executed. Defaults to this Component.
Hides this Component, setting it to invisible using the configured hideMode.
\n", - "linenr": 751, - "return": { - "type": "Ext.Component", - "doc": "this
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-implement", - "shortDoc": "Add methods / properties to the prototype of this class. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "members" - } - ], - "name": "implement", - "owner": "Ext.Base", - "doc": "Add methods / properties to the prototype of this class.
\n\nExt.define('My.awesome.Cat', {\n constructor: function() {\n ...\n }\n});\n\n My.awesome.Cat.implement({\n meow: function() {\n alert('Meowww...');\n }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n
\n",
- "linenr": 415,
- "return": {
- "type": "void",
- "doc": "\n"
- },
- "html_filename": "Base3.html"
- },
- {
- "deprecated": null,
- "alias": null,
- "protected": true,
- "tagname": "method",
- "href": "Base3.html#Ext-Base-method-initConfig",
- "shortDoc": "Initialize configuration for this class. ...",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
- "private": false,
- "params": [
- {
- "type": "Object",
- "optional": false,
- "doc": "\n",
- "name": "config"
- }
- ],
- "name": "initConfig",
- "owner": "Ext.Base",
- "doc": "Initialize configuration for this class. a typical example:
\n\nExt.define('My.awesome.Class', {\n // The default config\n config: {\n name: 'Awesome',\n isAwesome: true\n },\n\n constructor: function(config) {\n this.initConfig(config);\n\n return this;\n }\n});\n\nvar awesome = new My.awesome.Class({\n name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n
\n",
- "linenr": 63,
- "return": {
- "type": "Object",
- "doc": "mixins The mixin prototypes as key - value pairs
\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-insert", - "shortDoc": "Inserts a Component into this Container at a specified index. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Number", - "optional": false, - "doc": "The index at which the Component will be inserted\ninto the Container's items collection
\n", - "name": "index" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "The child Component to insert.
\nExt uses lazy rendering, and will only render the inserted Component should\nit become necessary.
\nA Component config object may be passed in order to avoid the overhead of\nconstructing a real Component object if lazy rendering might mean that the\ninserted Component will not be rendered immediately. To take advantage of\nthis 'lazy instantiation', set the Ext.Component.xtype config\nproperty to the registered type of the Component wanted.
\nFor a list of all available xtypes, see Ext.Component.
Inserts a Component into this Container at a specified index. Fires the\nbeforeadd event before inserting, then fires the add event after the\nComponent has been inserted.
\n", - "linenr": 547, - "return": { - "type": "Ext.Component", - "doc": "component The Component (or config object) that was\ninserted with the Container's default config values applied.
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-is", - "shortDoc": "Tests whether this Component matches the selector string. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The selector string to test against.
\n", - "name": "selector" - } - ], - "name": "is", - "owner": "Ext.AbstractComponent", - "doc": "Tests whether this Component matches the selector string.
\n", - "linenr": 1886, - "return": { - "type": "Boolean", - "doc": "True if this Component matches the selector.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDescendantOf", - "shortDoc": "Determines whether this component is the descendant of a particular container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Container", - "optional": false, - "doc": "\n", - "name": "container" - } - ], - "name": "isDescendantOf", - "owner": "Ext.AbstractComponent", - "doc": "Determines whether this component is the descendant of a particular container.
\n", - "linenr": 2950, - "return": { - "type": "Boolean", - "doc": "isDescendant
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDisabled", - "shortDoc": "Method to determine whether this Component is currently disabled. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "isDisabled", - "owner": "Ext.AbstractComponent", - "doc": "Method to determine whether this Component is currently disabled.
\n", - "linenr": 2282, - "return": { - "type": "Boolean", - "doc": "the disabled state of this Component.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDraggable", - "shortDoc": "Method to determine whether this Component is draggable. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "isDraggable", - "owner": "Ext.AbstractComponent", - "doc": "Method to determine whether this Component is draggable.
\n", - "linenr": 2459, - "return": { - "type": "Boolean", - "doc": "the draggable state of this component.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDroppable", - "shortDoc": "Method to determine whether this Component is droppable. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "isDroppable", - "owner": "Ext.AbstractComponent", - "doc": "Method to determine whether this Component is droppable.
\n", - "linenr": 2467, - "return": { - "type": "Boolean", - "doc": "the droppable state of this component.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isFloating", - "shortDoc": "Method to determine whether this Component is floating. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "isFloating", - "owner": "Ext.AbstractComponent", - "doc": "Method to determine whether this Component is floating.
\n", - "linenr": 2451, - "return": { - "type": "Boolean", - "doc": "the floating state of this component.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isHidden", - "shortDoc": "Method to determine whether this Component is currently set to hidden. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - - ], - "name": "isHidden", - "owner": "Ext.AbstractComponent", - "doc": "Method to determine whether this Component is currently set to hidden.
\n", - "linenr": 2298, - "return": { - "type": "Boolean", - "doc": "the hidden state of this Component.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isVisible", - "shortDoc": "Returns true if this component is visible. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": false, - "doc": ".
Optional. Pass true
to interrogate the visibility status of all\nparent Containers to determine whether this Component is truly visible to the user.
Generally, to determine whether a Component is hidden, the no argument form is needed. For example\nwhen creating dynamically laid out UIs in a hidden Container before showing them.
\n\n", - "name": "deep" - } - ], - "name": "isVisible", - "owner": "Ext.AbstractComponent", - "doc": "Returns true if this component is visible.
\n", - "linenr": 2182, - "return": { - "type": "Boolean", - "doc": "True if this component is visible, false otherwise.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isXType", - "shortDoc": "Tests whether or not this Component is of a specific xtype. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The xtype to check for this Component
\n", - "name": "xtype" - }, - { - "type": "Boolean", - "optional": true, - "doc": "(optional) False to check whether this Component is descended from the xtype (this is\nthe default), or true to check whether this Component is directly of the specified xtype.
\n", - "name": "shallow" - } - ], - "name": "isXType", - "owner": "Ext.AbstractComponent", - "doc": "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\nIf using your own subclasses, be aware that a Component must register its own xtype\nto participate in determination of inherited xtypes.
\n\n\nFor a list of all available xtypes, see the Ext.Component header.
\n\n\nExample usage:
\n\n\nvar 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\n",
- "linenr": 2074,
- "return": {
- "type": "Boolean",
- "doc": "True if this component descends from the specified xtype, false otherwise.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.util.Observable", - "doc": null, - "owner": "addManagedListener" - }, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-mon", - "shortDoc": "Shorthand for addManagedListener. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "Observable/Element", - "optional": false, - "doc": "The item to which to add a listener/listeners.
\n", - "name": "item" - }, - { - "type": "Object/String", - "optional": false, - "doc": "The event name, or an object containing event name properties.
\n", - "name": "ename" - }, - { - "type": "Function", - "optional": true, - "doc": "(optional) If the ename
parameter was an event name, this is the handler function.
(optional) If the ename
parameter was an event name, this is the scope (this
reference)\nin which the handler function is executed.
(optional) If the ename
parameter was an event name, this is the\naddListener options.
Shorthand for addManagedListener.
\n\nAdds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.
\n", - "linenr": 681, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-move", - "shortDoc": "Moves a Component within the Container ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Number", - "optional": false, - "doc": "The index the Component you wish to move is currently at.
\n", - "name": "fromIdx" - }, - { - "type": "Number", - "optional": false, - "doc": "The new index for the Component.
\n", - "name": "toIdx" - } - ], - "name": "move", - "owner": "Ext.container.AbstractContainer", - "doc": "Moves a Component within the Container
\n", - "linenr": 569, - "return": { - "type": "Ext.Component", - "doc": "component The Component (or config object) that was moved.
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.util.Observable", - "doc": null, - "owner": "removeManagedListener" - }, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-mun", - "shortDoc": "Shorthand for removeManagedListener. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "Observable|Element", - "optional": false, - "doc": "The item from which to remove a listener/listeners.
\n", - "name": "item" - }, - { - "type": "Object|String", - "optional": false, - "doc": "The event name, or an object containing event name properties.
\n", - "name": "ename" - }, - { - "type": "Function", - "optional": false, - "doc": "Optional. If the ename
parameter was an event name, this is the handler function.
Optional. If the ename
parameter was an event name, this is the scope (this
reference)\nin which the handler function is executed.
Shorthand for removeManagedListener.
\n\nRemoves listeners that were added by the mon method.
\n", - "linenr": 687, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-nextNode", - "shortDoc": "Returns the next node in the Component tree in tree traversal order. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "Optional A ComponentQuery selector to filter the following nodes.
\n", - "name": "selector" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "includeSelf" - } - ], - "name": "nextNode", - "owner": "Ext.AbstractComponent", - "doc": "Returns the next node in the Component tree in tree traversal order.
\n\n\nNote that this is not limited to siblings, and if invoked upon a node with no matching siblings, will\nwalk the tree to attempt to find a match. Contrast with nextSibling.
\n\n", - "linenr": 2012, - "return": { - "type": "void", - "doc": "The next node (or the next node which matches the selector). Returns null if there is no matching node.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-nextSibling", - "shortDoc": "Returns the next sibling of this Component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "Optional A ComponentQuery selector to filter the following items.
\n", - "name": "selector" - } - ], - "name": "nextSibling", - "owner": "Ext.AbstractComponent", - "doc": "Returns the next sibling of this Component.
\n\n\nOptionally selects the next sibling which matches the passed ComponentQuery selector.
\n\n\nMay also be refered to as next()
Note that this is limited to siblings, and if no siblings of the item match, null
is returned. Contrast with nextNode
The next sibling (or the next sibling which matches the selector). Returns null if there is no matching sibling.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-observe", - "shortDoc": "Sets observability on the passed class constructor. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "Function", - "optional": false, - "doc": "The class constructor to make observable.
\n", - "name": "c" - }, - { - "type": "Object", - "optional": false, - "doc": "An object containing a series of listeners to add. See addListener.
\n", - "name": "listeners" - } - ], - "name": "observe", - "owner": "Ext.util.Observable", - "doc": "Sets observability on the passed class constructor.
\n\nThis makes any event fired on any instance of the passed class also fire a single event through\nthe class allowing for central handling of events on many instances at once.
\n\nUsage:
\n\nExt.util.Observable.observe(Ext.data.Connection);\nExt.data.Connection.on('beforerequest', function(con, options) {\n console.log('Ajax request made to ' + options.url);\n});\n
\n",
- "linenr": 69,
- "return": {
- "type": "void",
- "doc": "\n"
- },
- "html_filename": "Observable.html"
- },
- {
- "deprecated": null,
- "alias": {
- "tagname": "alias",
- "cls": "Ext.util.Observable",
- "doc": null,
- "owner": "addListener"
- },
- "protected": false,
- "tagname": "method",
- "href": "Observable.html#Ext-util-Observable-method-on",
- "shortDoc": "Shorthand for addListener. ...",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
- "private": false,
- "params": [
- {
- "type": "String",
- "optional": false,
- "doc": "The name of the event to listen for. May also be an object who's property names are\nevent names.
\n", - "name": "eventName" - }, - { - "type": "Function", - "optional": false, - "doc": "The method the event invokes. Will be called with arguments given to\nfireEvent plus the options
parameter described below.
(optional) The scope (this
reference) in which the handler function is executed. If\nomitted, defaults to the object which fired the event.
(optional) An object containing handler configuration.
\n\nNote: Unlike in ExtJS 3.x, the options object will also be passed as the last argument to every event handler.
\n\nThis object may contain any of the following properties:
\n\nscope : Object
\n\nThe scope (this
reference) in which the handler function is executed. If omitted, defaults to the object\nwhich fired the event.
delay : Number
\n\nThe number of milliseconds to delay the invocation of the handler after the event fires.
single : Boolean
\n\nTrue to add a handler to handle just the next firing of the event, and then remove itself.
buffer : Number
\n\nCauses the handler to be scheduled to run in an Ext.util.DelayedTask delayed by the specified number of\nmilliseconds. If the event fires again within that time, the original handler is not invoked, but the new\nhandler is scheduled in its place.
target : Observable
\n\nOnly call the handler if the event was fired on the target Observable, not if the event was bubbled up from a\nchild Observable.
element : String
\n\nThis option is only valid for listeners bound to Components. The name of a Component\nproperty which references an element to add a listener to.
\n\nThis option is useful during Component construction to add DOM event listeners to elements of\nComponents which will exist only after the Component is rendered.\nFor example, to add a click listener to a Panel's body:
\n\nnew Ext.panel.Panel({\n title: 'The title',\n listeners: {\n click: this.handlePanelClick,\n element: 'body'\n }\n});\n
Combining Options
\n\nUsing the options argument, it is possible to combine different types of listeners:
\n\nA delayed, one-time listener.
\n\nmyPanel.on('hide', this.handleClick, this, {\n single: true,\n delay: 100\n});\n
\n\nAttaching multiple handlers in 1 call
\n\nThe method also allows for a single argument to be passed which is a config object containing properties which\nspecify multiple events. For example:
\n\nmyGridPanel.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\nOne can also specify options for each event handler separately:
\n\nmyGridPanel.on({\n cellClick: {fn: this.onCellClick, scope: this, single: true},\n mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
\n",
- "name": "options"
- }
- ],
- "name": "on",
- "owner": "Ext.util.Observable",
- "doc": "Shorthand for addListener.
\n\nAppends an event handler to this object.
\n", - "linenr": 669, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-override", - "shortDoc": "Override prototype members of this class. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "members" - } - ], - "name": "override", - "owner": "Ext.Base", - "doc": "Override prototype members of this class. Overridden methods can be invoked via\nExt.Base.callOverridden
\n\nExt.define('My.Cat', {\n constructor: function() {\n alert(\"I'm a cat!\");\n\n return this;\n }\n});\n\nMy.Cat.override({\n constructor: function() {\n alert(\"I'm going to be a cat!\");\n\n var instance = this.callOverridden();\n\n alert(\"Meeeeoooowwww\");\n\n return instance;\n }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n // alerts \"I'm a cat!\"\n // alerts \"Meeeeoooowwww\"\n
\n",
- "linenr": 518,
- "return": {
- "type": "Ext.Base",
- "doc": "this
\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Container3.html#Ext-grid-header-Container-method-prepareData", - "shortDoc": "Maps the record data to base it on the header id's. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "data" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "rowIdx" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "record" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "view" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "panel" - } - ], - "name": "prepareData", - "owner": "Ext.grid.header.Container", - "doc": "Maps the record data to base it on the header id's.\nThis correlates to the markup/template generated by\nTableChunker.
\n", - "linenr": 730, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-previousNode", - "shortDoc": "Returns the previous node in the Component tree in tree traversal order. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "Optional. A ComponentQuery selector to filter the preceding nodes.
\n", - "name": "selector" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "includeSelf" - } - ], - "name": "previousNode", - "owner": "Ext.AbstractComponent", - "doc": "Returns the previous node in the Component tree in tree traversal order.
\n\n\nNote that this is not limited to siblings, and if invoked upon a node with no matching siblings, will\nwalk the tree in reverse order to attempt to find a match. Contrast with previousSibling.
\n\n", - "linenr": 1976, - "return": { - "type": "void", - "doc": "The previous node (or the previous node which matches the selector). Returns null if there is no matching node.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-previousSibling", - "shortDoc": "Returns the previous sibling of this Component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "Optional. A ComponentQuery selector to filter the preceding items.
\n", - "name": "selector" - } - ], - "name": "previousSibling", - "owner": "Ext.AbstractComponent", - "doc": "Returns the previous sibling of this Component.
\n\n\nOptionally selects the previous sibling which matches the passed ComponentQuery selector.
\n\n\nMay also be refered to as prev()
Note that this is limited to siblings, and if no siblings of the item match, null
is returned. Contrast with previousNode
The previous sibling (or the previous sibling which matches the selector). Returns null if there is no matching sibling.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-query", - "shortDoc": "Retrieves all descendant components which match the passed selector. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "Selector complying to an Ext.ComponentQuery selector
\n", - "name": "selector" - } - ], - "name": "query", - "owner": "Ext.container.AbstractContainer", - "doc": "Retrieves all descendant components which match the passed selector.\nExecutes an Ext.ComponentQuery.query using this container as its root.
\n", - "linenr": 774, - "return": { - "type": "Array", - "doc": "Ext.Component's which matched the selector
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-relayEvents", - "shortDoc": "Relays selected events from the specified Observable as if the events were fired by this. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "The Observable whose events this object is to relay.
\n", - "name": "origin" - }, - { - "type": "[String]", - "optional": false, - "doc": "Array of event names to relay.
\n", - "name": "events" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "prefix" - } - ], - "name": "relayEvents", - "owner": "Ext.util.Observable", - "doc": "Relays selected events from the specified Observable as if the events were fired by this
.
The Observable to release
\n", - "name": "o" - } - ], - "name": "releaseCapture", - "owner": "Ext.util.Observable", - "doc": "Removes all added captures from the Observable.
\n", - "linenr": 44, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-remove", - "shortDoc": "Removes a component from this container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Component/String", - "optional": false, - "doc": "The component reference or id to remove.
\n", - "name": "component" - }, - { - "type": "Boolean", - "optional": true, - "doc": "(optional) True to automatically invoke the removed Component's Ext.Component.destroy function.\nDefaults to the value of this Container's autoDestroy config.
\n", - "name": "autoDestroy" - } - ], - "name": "remove", - "owner": "Ext.container.AbstractContainer", - "doc": "Removes a component from this container. Fires the beforeremove event before removing, then fires\nthe remove event after the component has been removed.
\n", - "linenr": 600, - "return": { - "type": "Ext.Component", - "doc": "component The Component that was removed.
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-method-removeAll", - "shortDoc": "Removes all components from this container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": true, - "doc": "(optional) True to automatically invoke the removed Component's Ext.Component.destroy function.\nDefaults to the value of this Container's autoDestroy config.
\n", - "name": "autoDestroy" - } - ], - "name": "removeAll", - "owner": "Ext.container.AbstractContainer", - "doc": "Removes all components from this container.
\n", - "linenr": 653, - "return": { - "type": "Array", - "doc": "Array of the destroyed components
\n" - }, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeCls", - "shortDoc": "Removes a CSS class from the top level element representing this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "className" - } - ], - "name": "removeCls", - "owner": "Ext.AbstractComponent", - "doc": "Removes a CSS class from the top level element representing this component.
\n", - "linenr": 2338, - "return": { - "type": "Ext.Component", - "doc": "Returns the Component to allow method chaining.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeClsWithUI", - "shortDoc": "Removes a cls to the uiCls array, which will also call removeUIClsFromElement and removes\nit from all elements of thi...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String/Array", - "optional": false, - "doc": "A string or an array of strings to remove to the uiCls
\n", - "name": "cls" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "skip" - } - ], - "name": "removeClsWithUI", - "owner": "Ext.AbstractComponent", - "doc": "Removes a cls to the uiCls array, which will also call removeUIClsFromElement and removes\nit from all elements of this component.
\n", - "linenr": 1494, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-removeListener", - "shortDoc": "Removes an event handler. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The type of event the handler was associated with.
\n", - "name": "eventName" - }, - { - "type": "Function", - "optional": false, - "doc": "The handler to remove. This must be a reference to the function passed into the\naddListener call.
\n", - "name": "handler" - }, - { - "type": "Object", - "optional": true, - "doc": "(optional) The scope originally specified for the handler.
\n", - "name": "scope" - } - ], - "name": "removeListener", - "owner": "Ext.util.Observable", - "doc": "Removes an event handler.
\n", - "linenr": 392, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-removeManagedListener", - "shortDoc": "Removes listeners that were added by the mon method. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "Observable|Element", - "optional": false, - "doc": "The item from which to remove a listener/listeners.
\n", - "name": "item" - }, - { - "type": "Object|String", - "optional": false, - "doc": "The event name, or an object containing event name properties.
\n", - "name": "ename" - }, - { - "type": "Function", - "optional": false, - "doc": "Optional. If the ename
parameter was an event name, this is the handler function.
Optional. If the ename
parameter was an event name, this is the scope (this
reference)\nin which the handler function is executed.
Removes listeners that were added by the mon method.
\n", - "linenr": 197, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeUIClsFromElement", - "shortDoc": "Method which removes a specified UI + uiCls from the components element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The UI to add to the element
\n", - "name": "ui" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "force" - } - ], - "name": "removeUIClsFromElement", - "owner": "Ext.AbstractComponent", - "doc": "Method which removes a specified UI + uiCls from the components element.\nThe cls which is added to the element will be: this.baseCls + '-' + ui
The data value for the current cell
\n", - "name": "value" - }, - { - "type": "Object", - "optional": false, - "doc": "A collection of metadata about the current cell; can be used or modified by\nthe renderer. Recognized properties are: tdCls, tdAttr, and style.
\n", - "name": "metaData" - }, - { - "type": "Ext.data.Model", - "optional": false, - "doc": "The record for the current row
\n", - "name": "record" - }, - { - "type": "Number", - "optional": false, - "doc": "The index of the current row
\n", - "name": "rowIndex" - }, - { - "type": "Number", - "optional": false, - "doc": "The index of the current column
\n", - "name": "colIndex" - }, - { - "type": "Ext.data.Store", - "optional": false, - "doc": "The data store
\n", - "name": "store" - }, - { - "type": "Ext.view.View", - "optional": false, - "doc": "The current view
\n", - "name": "view" - } - ], - "name": "renderer", - "owner": "Ext.grid.column.Column", - "doc": "A renderer is an 'interceptor' method which can be used transform data (value, appearance, etc.) before it\nis rendered. Example:
\n\n\n{\n renderer: function(value){\n if (value === 1) {\n return '1 person';\n }\n return value + ' people';\n }\n}\n
\n\n",
- "linenr": 147,
- "return": {
- "type": "String",
- "doc": "The HTML to be rendered
\n" - }, - "html_filename": "Column2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-resumeEvents", - "shortDoc": "Resumes firing events (see suspendEvents). ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - - ], - "name": "resumeEvents", - "owner": "Ext.util.Observable", - "doc": "Resumes firing events (see suspendEvents).
\n\nIf events were suspended using the **queueSuspended**
parameter, then all events fired\nduring event suspension will be sent to any listeners now.
Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence. This is the opposite of syncFx.
\n", - "linenr": 357, - "return": { - "type": "Object", - "doc": "this
\n" - }, - "html_filename": "Animate.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Floating.html#Ext-util-Floating-method-setActive", - "shortDoc": "This method is called internally by Ext.ZIndexManager to signal that a floating\nComponent has either been moved to th...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Floating.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": false, - "doc": "True to activate the Component, false to deactivate it (defaults to false)
\n", - "name": "active" - }, - { - "type": "Component", - "optional": false, - "doc": "The newly active Component which is taking over topmost zIndex position.
\n", - "name": "newActive" - } - ], - "name": "setActive", - "owner": "Ext.util.Floating", - "doc": "This method is called internally by Ext.ZIndexManager to signal that a floating\nComponent has either been moved to the top of its zIndex stack, or pushed from the top of its zIndex stack.
\n\n\nIf a Window is superceded by another Window, deactivating it hides its shadow.
\n\n\nThis method also fires the activate or deactivate event depending on which action occurred.
\n\n", - "linenr": 218, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Floating.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-setAutoScroll", - "shortDoc": "Sets the overflow on the content element of the component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": false, - "doc": "True to allow the Component to auto scroll.
\n", - "name": "scroll" - } - ], - "name": "setAutoScroll", - "owner": "Ext.Component", - "doc": "Sets the overflow on the content element of the component.
\n", - "linenr": 362, - "return": { - "type": "Ext.Component", - "doc": "this
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setDisabled", - "shortDoc": "Enable or disable the component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": false, - "doc": "\n", - "name": "disabled" - } - ], - "name": "setDisabled", - "owner": "Ext.AbstractComponent", - "doc": "Enable or disable the component.
\n", - "linenr": 2290, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setDocked", - "shortDoc": "Sets the dock position of this component in its parent panel. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "dock" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "layoutParent" - } - ], - "name": "setDocked", - "owner": "Ext.AbstractComponent", - "doc": "Sets the dock position of this component in its parent panel. Note that\nthis only has effect if this item is part of the dockedItems collection\nof a parent that has a DockLayout (note that any Panel has a DockLayout\nby default)
\n", - "linenr": 2865, - "return": { - "type": "Component", - "doc": "this
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Column2.html#Ext-grid-column-Column-method-setEditor", - "shortDoc": "Sets the form field to be used for editing. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "An object representing a field to be created. If no xtype is specified a 'textfield' is assumed.
\n", - "name": "field" - } - ], - "name": "setEditor", - "owner": "Ext.grid.column.Column", - "doc": "Sets the form field to be used for editing. Note: This method only has an implementation\nif an Editing plugin has been enabled on the grid.
\n", - "linenr": 735, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Column2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setHeight", - "shortDoc": "Sets the height of the component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Number", - "optional": false, - "doc": "The new height to set. This may be one of:
Sets the height of the component. This method fires the resize event.
\n", - "linenr": 2769, - "return": { - "type": "Ext.Component", - "doc": "this
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setLoading", - "shortDoc": "This method allows you to show or hide a LoadMask on top of this component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Boolean/Object/String", - "optional": false, - "doc": "True to show the default LoadMask, a config object\nthat will be passed to the LoadMask constructor, or a message String to show. False to\nhide the current LoadMask.
\n", - "name": "load" - }, - { - "type": "Boolean", - "optional": false, - "doc": "True to mask the targetEl of this Component instead of the this.el.\nFor example, setting this to true on a Panel will cause only the body to be masked. (defaults to false)
\n", - "name": "targetEl" - } - ], - "name": "setLoading", - "owner": "Ext.AbstractComponent", - "doc": "This method allows you to show or hide a LoadMask on top of this component.
\n", - "linenr": 2830, - "return": { - "type": "Ext.LoadMask", - "doc": "The LoadMask instance that has just been shown.
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-setPagePosition", - "shortDoc": "Sets the page XY position of the component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "Number", - "optional": false, - "doc": "The new x position
\n", - "name": "x" - }, - { - "type": "Number", - "optional": false, - "doc": "The new y position
\n", - "name": "y" - }, - { - "type": "Mixed", - "optional": false, - "doc": "If passed, the Component is animated into its new position. If this parameter\nis a number, it is used as the animation duration in milliseconds.
\n", - "name": "animate" - } - ], - "name": "setPagePosition", - "owner": "Ext.Component", - "doc": "Sets the page XY position of the component. To set the left and top instead, use setPosition.\nThis method fires the move event.
\n", - "linenr": 504, - "return": { - "type": "Ext.Component", - "doc": "this
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-setPosition", - "shortDoc": "Sets the left and top of the component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "Number", - "optional": false, - "doc": "The new left
\n", - "name": "left" - }, - { - "type": "Number", - "optional": false, - "doc": "The new top
\n", - "name": "top" - }, - { - "type": "Mixed", - "optional": false, - "doc": "If true, the Component is animated into its new position. You may also pass an animation configuration.
\n", - "name": "animate" - } - ], - "name": "setPosition", - "owner": "Ext.Component", - "doc": "Sets the left and top of the component. To set the page XY position instead, use setPagePosition.\nThis method fires the move event.
\n", - "linenr": 420, - "return": { - "type": "Ext.Component", - "doc": "this
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setSize", - "shortDoc": "Sets the width and height of this Component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "The new width to set. This may be one of:
{width: widthValue, height: heightValue}
.undefined
to leave the width unchanged.The new height to set (not required if a size object is passed as the first arg).\nThis may be one of:
undefined
to leave the height unchanged.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}
.
this
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Column2.html#Ext-grid-column-Column-method-setText", - "shortDoc": "Sets the header text for this Column. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "The header to display on this Column.
\n", - "name": "text" - } - ], - "name": "setText", - "owner": "Ext.grid.column.Column", - "doc": "Sets the header text for this Column.
\n", - "linenr": 299, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Column2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setUI", - "shortDoc": "Sets the UI for the component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The new UI for the component
\n", - "name": "ui" - } - ], - "name": "setUI", - "owner": "Ext.AbstractComponent", - "doc": "Sets the UI for the component. This will remove any existing UIs on the component. It will also\nloop through any uiCls set on the component and rename them so they include the new UI
\n", - "linenr": 1417, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setVisible", - "shortDoc": "Convenience function to hide or show this component by boolean. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": false, - "doc": "True to show, false to hide
\n", - "name": "visible" - } - ], - "name": "setVisible", - "owner": "Ext.AbstractComponent", - "doc": "Convenience function to hide or show this component by boolean.
\n", - "linenr": 2173, - "return": { - "type": "Ext.Component", - "doc": "this
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setWidth", - "shortDoc": "Sets the width of the component. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Number", - "optional": false, - "doc": "The new width to setThis may be one of:
Sets the width of the component. This method fires the resize event.
\n", - "linenr": 2757, - "return": { - "type": "Ext.Component", - "doc": "this
\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-show", - "shortDoc": "Shows this Component, rendering it first if autoRender or floating are true. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "String/Element", - "optional": false, - "doc": "Optional, and only valid for floating Components such as\nWindows or ToolTips, or regular Components which have been configured\nwith floating: true
. The target from which the Component should\nanimate from while opening (defaults to null with no animation)
(optional) A callback function to call after the Component is displayed. Only necessary if animation was specified.
\n", - "name": "callback" - }, - { - "type": "Object", - "optional": true, - "doc": "(optional) The scope (this
reference) in which the callback is executed. Defaults to this Component.
Shows this Component, rendering it first if autoRender or floating are true
.
After being shown, a floating Component (such as a Ext.window.Window), is activated it and brought to the front of\nits z-index stack.
\n\n", - "linenr": 648, - "return": { - "type": "Component", - "doc": "this
\n" - }, - "html_filename": "Component2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": true, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-statics", - "shortDoc": "Get the reference to the class from which this object was instantiated. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - - ], - "name": "statics", - "owner": "Ext.Base", - "doc": "Get the reference to the class from which this object was instantiated. Note that unlike Ext.Base.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
Ext.define('My.Cat', {\n statics: {\n totalCreated: 0,\n speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n },\n\n constructor: function() {\n var statics = this.statics();\n\n alert(statics.speciesName); // always equals to 'Cat' no matter what 'this' refers to\n // equivalent to: My.Cat.speciesName\n\n alert(this.self.speciesName); // dependent on 'this'\n\n statics.totalCreated++;\n\n return this;\n },\n\n clone: function() {\n var cloned = new this.self; // dependent on 'this'\n\n cloned.groupName = this.statics().speciesName; // equivalent to: My.Cat.speciesName\n\n return cloned;\n }\n});\n\n\nExt.define('My.SnowLeopard', {\n extend: 'My.Cat',\n\n statics: {\n speciesName: 'Snow Leopard' // My.SnowLeopard.speciesName = 'Snow Leopard'\n },\n\n constructor: function() {\n this.callParent();\n }\n});\n\nvar cat = new My.Cat(); // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone)); // alerts 'My.SnowLeopard'\nalert(clone.groupName); // alerts 'Cat'\n\nalert(My.Cat.totalCreated); // alerts 3\n
\n",
- "linenr": 199,
- "return": {
- "type": "Class",
- "doc": "\n"
- },
- "html_filename": "Base3.html"
- },
- {
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "method",
- "href": "Animate.html#Ext-util-Animate-method-stopAnimation",
- "shortDoc": "Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that ...",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Animate.js",
- "private": false,
- "params": [
-
- ],
- "name": "stopAnimation",
- "owner": "Ext.util.Animate",
- "doc": "Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.
\n", - "linenr": 335, - "return": { - "type": "Ext.core.Element", - "doc": "The Element
\n" - }, - "html_filename": "Animate.html" - }, - { - "deprecated": { - "version": "4.0", - "text": "Replaced by stopAnimation
\n\n\n\n", - "tagname": "deprecated", - "doc": "Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet." - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Animate.html#Ext-util-Animate-method-stopFx", - "shortDoc": "Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Animate.js", - "private": false, - "params": [ - - ], - "name": "stopFx", - "owner": "Ext.util.Animate", - "doc": "Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.
\n", - "linenr": 326, - "return": { - "type": "Ext.core.Element", - "doc": "The Element
\n" - }, - "html_filename": "Animate.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-suspendEvents", - "shortDoc": "Suspends the firing of all events. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": false, - "doc": "Pass as true to queue up suspended events to be fired\nafter the resumeEvents call instead of discarding all suspended events.
\n", - "name": "queueSuspended" - } - ], - "name": "suspendEvents", - "owner": "Ext.util.Observable", - "doc": "Suspends the firing of all events. (see resumeEvents)
\n", - "linenr": 541, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Animate.html#Ext-util-Animate-method-syncFx", - "shortDoc": "Ensures that all effects queued after syncFx is called on this object are\nrun concurrently. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Animate.js", - "private": false, - "params": [ - - ], - "name": "syncFx", - "owner": "Ext.util.Animate", - "doc": "Ensures that all effects queued after syncFx is called on this object are\nrun concurrently. This is the opposite of sequenceFx.
\n", - "linenr": 345, - "return": { - "type": "Object", - "doc": "this
\n" - }, - "html_filename": "Animate.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Floating.html#Ext-util-Floating-method-toBack", - "shortDoc": "Sends this Component to the back of (lower z-index than) any other visible windows ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Floating.js", - "private": false, - "params": [ - - ], - "name": "toBack", - "owner": "Ext.util.Floating", - "doc": "Sends this Component to the back of (lower z-index than) any other visible windows
\n", - "linenr": 242, - "return": { - "type": "Component", - "doc": "this
\n" - }, - "html_filename": "Floating.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Floating.html#Ext-util-Floating-method-toFront", - "shortDoc": "Brings this floating Component to the front of any other visible, floating Components managed by the same ZIndexManag...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Floating.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": true, - "doc": "(optional) Specify true
to prevent the Component from being focused.
Brings this floating Component to the front of any other visible, floating Components managed by the same ZIndexManager
\n\n\nIf this Component is modal, inserts the modal mask just below this Component in the z-index stack.
\n\n", - "linenr": 190, - "return": { - "type": "Component", - "doc": "this
\n" - }, - "html_filename": "Floating.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.util.Observable", - "doc": null, - "owner": "removeListener" - }, - "protected": false, - "tagname": "method", - "href": "Observable.html#Ext-util-Observable-method-un", - "shortDoc": "Shorthand for removeListener. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "The type of event the handler was associated with.
\n", - "name": "eventName" - }, - { - "type": "Function", - "optional": false, - "doc": "The handler to remove. This must be a reference to the function passed into the\naddListener call.
\n", - "name": "handler" - }, - { - "type": "Object", - "optional": true, - "doc": "(optional) The scope originally specified for the handler.
\n", - "name": "scope" - } - ], - "name": "un", - "owner": "Ext.util.Observable", - "doc": "Shorthand for removeListener.
\n\nRemoves an event handler.
\n", - "linenr": 675, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Observable.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-up", - "shortDoc": "Walks up the ownerCt axis looking for an ancestor Container which matches\nthe passed simple selector. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "Optional. The simple selector to test.
\n", - "name": "selector" - } - ], - "name": "up", - "owner": "Ext.AbstractComponent", - "doc": "Walks up the ownerCt
axis looking for an ancestor Container which matches\nthe passed simple selector.
Example:\n
var owningTabPanel = grid.up('tabpanel');\n
\n\n",
- "linenr": 1895,
- "return": {
- "type": "Container",
- "doc": "The matching ancestor Container (or undefined
if no match was found).
If this component has been configured with a template via the tpl config\nthen it will use this argument as data to populate the template.\nIf this component was not configured with a template, the components\ncontent area will be updated via Ext.core.Element update
\n", - "name": "htmlOrData" - }, - { - "type": "Boolean", - "optional": true, - "doc": "(optional) Only legitimate when using the html configuration. Defaults to false
\n", - "name": "loadScripts" - }, - { - "type": "Function", - "optional": true, - "doc": "(optional) Only legitimate when using the html configuration. Callback to execute when scripts have finished loading
\n", - "name": "callback" - } - ], - "name": "update", - "owner": "Ext.AbstractComponent", - "doc": "Update the content area of a component.
\n", - "linenr": 2141, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Component2.html#Ext-Component-method-updateBox", - "shortDoc": "Sets the current box measurements of the component's underlying element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "An object in the format {x, y, width, height}
\n", - "name": "box" - } - ], - "name": "updateBox", - "owner": "Ext.Component", - "doc": "Sets the current box measurements of the component's underlying element.
\n", - "linenr": 554, - "return": { - "type": "Ext.Component", - "doc": "this
\n" - }, - "html_filename": "Component2.html" - } - ], - "property": [ - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "AbstractComponent.html#Ext-AbstractComponent-property-draggable", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "draggable", - "owner": "Ext.AbstractComponent", - "doc": "Read-only property indicating whether or not the component can be dragged
\n", - "linenr": 395, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Ext.Container", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Component2.html#Ext-Component-property-floatParent", - "shortDoc": "Optional. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", - "private": false, - "name": "floatParent", - "owner": "Ext.Component", - "doc": "Optional. Only present for floating Components which were inserted as descendant items of floating Containers.
\n\n\nFloating Components that are programatically rendered will not have a floatParent
property.
For floating Components which are child items of a Container, the floatParent will be the floating ancestor Container which is\nresponsible for the base z-index value of all its floating descendants. It provides a ZIndexManager which provides\nz-indexing services for all its descendant floating Components.
\n\n\nFor example, the dropdown BoundList of a ComboBox which is in a Window will have the Window as its\nfloatParent
See floating and zIndexManager
\n\n", - "linenr": 224, - "html_filename": "Component2.html" - }, - { - "type": "Object", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "AbstractComponent.html#Ext-AbstractComponent-property-frameSize", - "shortDoc": "Read-only property indicating the width of any framing elements which were added within the encapsulating element\nto ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "frameSize", - "owner": "Ext.AbstractComponent", - "doc": "Read-only property indicating the width of any framing elements which were added within the encapsulating element\nto provide graphical, rounded borders. See the frame config.
\n\n\nThis is an object containing the frame width in pixels for all four sides of the Component containing\nthe following properties:
\n\n\ntop
The width of the top framing element in pixels.right
The width of the right framing element in pixels.bottom
The width of the bottom framing element in pixels.left
The width of the left framing element in pixels.true
if this HeaderContainer is in fact a group header which contains sub headers.
The MixedCollection containing all the child items of this container.
\n", - "linenr": 273, - "html_filename": "AbstractContainer2.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "AbstractComponent.html#Ext-AbstractComponent-property-maskOnDisable", - "shortDoc": "This is an internal flag that you use when creating custom components. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "maskOnDisable", - "owner": "Ext.AbstractComponent", - "doc": "This is an internal flag that you use when creating custom components.\nBy default this is set to true which means that every component gets a mask when its disabled.\nComponents like FieldContainer, FieldSet, Field, Button, Tab override this property to false\nsince they want to implement custom disable logic.
\n", - "linenr": 534, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Ext.Container", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "AbstractComponent.html#Ext-AbstractComponent-property-ownerCt", - "shortDoc": "This Component's owner Container (defaults to undefined, and is set automatically when\nthis Component is added to a C...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "ownerCt", - "owner": "Ext.AbstractComponent", - "doc": "This Component's owner Container (defaults to undefined, and is set automatically when\nthis Component is added to a Container). Read-only.
\n\nNote: to access items within the Container see itemId.
\n\n", - "linenr": 102, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "AbstractComponent.html#Ext-AbstractComponent-property-rendered", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "name": "rendered", - "owner": "Ext.AbstractComponent", - "doc": "Read-only property indicating whether or not the component has been rendered.
\n", - "linenr": 521, - "html_filename": "AbstractComponent.html" - }, - { - "type": "Class", - "deprecated": null, - "alias": null, - "protected": true, - "tagname": "property", - "href": "Base3.html#Ext-Base-property-self", - "shortDoc": "Get the reference to the current class from which this object was instantiated. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "name": "self", - "owner": "Ext.Base", - "doc": "Get the reference to the current class from which this object was instantiated. Unlike Ext.Base.statics,\nthis.self
is scope-dependent and it's meant to be used for dynamic inheritance. See Ext.Base.statics\nfor a detailed comparison
Ext.define('My.Cat', {\n statics: {\n speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n },\n\n constructor: function() {\n alert(this.self.speciesName); / dependent on 'this'\n\n return this;\n },\n\n clone: function() {\n return new this.self();\n }\n});\n\n\nExt.define('My.SnowLeopard', {\n extend: 'My.Cat',\n statics: {\n speciesName: 'Snow Leopard' // My.SnowLeopard.speciesName = 'Snow Leopard'\n }\n});\n\nvar cat = new My.Cat(); // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone)); // alerts 'My.SnowLeopard'\n
\n",
- "linenr": 18,
- "html_filename": "Base3.html"
- },
- {
- "type": "Ext.core.Element",
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "property",
- "href": "Column2.html#Ext-grid-column-Column-property-textEl",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js",
- "private": false,
- "name": "textEl",
- "owner": "Ext.grid.column.Column",
- "doc": "\n",
- "linenr": 196,
- "html_filename": "Column2.html"
- },
- {
- "type": "Ext.core.Element",
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "property",
- "href": "Column2.html#Ext-grid-column-Column-property-triggerEl",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js",
- "private": false,
- "name": "triggerEl",
- "owner": "Ext.grid.column.Column",
- "doc": "\n",
- "linenr": 192,
- "html_filename": "Column2.html"
- },
- {
- "type": "Ext.ZIndexManager",
- "deprecated": null,
- "alias": null,
- "protected": false,
- "tagname": "property",
- "href": "Component2.html#Ext-Component-property-zIndexManager",
- "shortDoc": "Optional. ...",
- "static": false,
- "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js",
- "private": false,
- "name": "zIndexManager",
- "owner": "Ext.Component",
- "doc": "Optional. Only present for floating Components after they have been rendered.
\n\n\nA reference to the ZIndexManager which is managing this Component's z-index.
\n\n\nThe ZIndexManager maintains a stack of floating Component z-indices, and also provides a single modal\nmask which is insert just beneath the topmost visible modal floating Component.
\n\n\nFloating Components may be brought to the front or sent to the back of the z-index stack.
\n\n\nThis defaults to the global ZIndexManager for floating Components that are programatically\nrendered.
\n\n\nFor floating Components which are added to a Container, the ZIndexManager is acquired from the first ancestor Container found\nwhich is floating, or if not found the global ZIndexManager is used.
\n\n\nSee floating and floatParent
\n\n", - "linenr": 209, - "html_filename": "Component2.html" - } - ], - "cssVar": [ - - ], - "cssMixin": [ - - ], - "event": [ - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-activate", - "shortDoc": "Fires after a Component has been visually activated. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "activate", - "owner": "Ext.AbstractComponent", - "doc": "Fires after a Component has been visually activated.
\n", - "linenr": 565, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-event-add", - "shortDoc": "@bubbles\nFires after any Ext.Component is added or inserted into the container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Ext.container.Container", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "The component that was added
\n", - "name": "component" - }, - { - "type": "Number", - "optional": false, - "doc": "The index at which the component was added to the container's items collection
\n", - "name": "index" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "add", - "owner": "Ext.container.AbstractContainer", - "doc": "@bubbles\nFires after any Ext.Component is added or inserted into the container.
\n", - "linenr": 215, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-added", - "shortDoc": "Fires after a Component had been added to a Container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Ext.container.Container", - "optional": false, - "doc": "Parent Container
\n", - "name": "container" - }, - { - "type": "Number", - "optional": false, - "doc": "position of Component
\n", - "name": "pos" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "added", - "owner": "Ext.AbstractComponent", - "doc": "Fires after a Component had been added to a Container.
\n", - "linenr": 585, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-event-afterlayout", - "shortDoc": "Fires when the components in this container are arranged by the associated layout manager. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Ext.container.Container", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "ContainerLayout", - "optional": false, - "doc": "The ContainerLayout implementation for this container
\n", - "name": "layout" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "afterlayout", - "owner": "Ext.container.AbstractContainer", - "doc": "Fires when the components in this container are arranged by the associated layout manager.
\n", - "linenr": 191, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-afterrender", - "shortDoc": "Fires after the component rendering is finished. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "afterrender", - "owner": "Ext.AbstractComponent", - "doc": "Fires after the component rendering is finished.
\n\n\nThe afterrender event is fired after this Component has been rendered, been postprocesed\nby any afterRender method defined for the Component.
\n\n", - "linenr": 652, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforeactivate", - "shortDoc": "Fires before a Component has been visually activated. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforeactivate", - "owner": "Ext.AbstractComponent", - "doc": "Fires before a Component has been visually activated.\nReturning false from an event listener can prevent the activate\nfrom occurring.
\n", - "linenr": 557, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-event-beforeadd", - "shortDoc": "Fires before any Ext.Component is added or inserted into the container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Ext.container.Container", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "The component being added
\n", - "name": "component" - }, - { - "type": "Number", - "optional": false, - "doc": "The index at which the component will be added to the container's items collection
\n", - "name": "index" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforeadd", - "owner": "Ext.container.AbstractContainer", - "doc": "Fires before any Ext.Component is added or inserted into the container.\nA handler can return false to cancel the add.
\n", - "linenr": 198, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-event-beforecardswitch", - "shortDoc": "Fires before this container switches the active card. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Ext.container.Container", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "The card that will be switched to
\n", - "name": "newCard" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "The card that will be switched from
\n", - "name": "oldCard" - }, - { - "type": "Number", - "optional": false, - "doc": "The index of the card that will be switched to
\n", - "name": "index" - }, - { - "type": "Boolean", - "optional": false, - "doc": "True if this cardswitch will be animated
\n", - "name": "animated" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforecardswitch", - "owner": "Ext.container.AbstractContainer", - "doc": "Fires before this container switches the active card. This event\nis only available if this container uses a CardLayout. Note that\nTabPanel and Carousel both get a CardLayout by default, so both\nwill have this event.\nA handler can return false to cancel the card switch.
\n", - "linenr": 232, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforedeactivate", - "shortDoc": "Fires before a Component has been visually deactivated. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforedeactivate", - "owner": "Ext.AbstractComponent", - "doc": "Fires before a Component has been visually deactivated.\nReturning false from an event listener can prevent the deactivate\nfrom occurring.
\n", - "linenr": 571, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforedestroy", - "shortDoc": "Fires before the component is destroyed. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforedestroy", - "owner": "Ext.AbstractComponent", - "doc": "Fires before the component is destroyed. Return false from an event handler to stop the destroy.
\n", - "linenr": 660, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforehide", - "shortDoc": "Fires before the component is hidden when calling the hide method. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforehide", - "owner": "Ext.AbstractComponent", - "doc": "Fires before the component is hidden when calling the hide method.\nReturn false from an event handler to stop the hide.
\n", - "linenr": 618, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-event-beforeremove", - "shortDoc": "Fires before any Ext.Component is removed from the container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Ext.container.Container", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "The component being removed
\n", - "name": "component" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforeremove", - "owner": "Ext.container.AbstractContainer", - "doc": "Fires before any Ext.Component is removed from the container. A handler can return\nfalse to cancel the remove.
\n", - "linenr": 207, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforerender", - "shortDoc": "Fires before the component is rendered. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforerender", - "owner": "Ext.AbstractComponent", - "doc": "Fires before the component is rendered. Return false from an\nevent handler to stop the render.
\n", - "linenr": 639, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforeshow", - "shortDoc": "Fires before the component is shown when calling the show method. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforeshow", - "owner": "Ext.AbstractComponent", - "doc": "Fires before the component is shown when calling the show method.\nReturn false from an event handler to stop the show.
\n", - "linenr": 605, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Stateful.html#Ext-state-Stateful-event-beforestaterestore", - "shortDoc": "Fires before the state of the object is restored. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", - "private": false, - "params": [ - { - "type": "Ext.state.Stateful", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "optional": false, - "doc": "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", - "name": "state" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforestaterestore", - "owner": "Ext.state.Stateful", - "doc": "Fires before the state of the object is restored. Return false from an event handler to stop the restore.
\n", - "linenr": 101, - "html_filename": "Stateful.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Stateful.html#Ext-state-Stateful-event-beforestatesave", - "shortDoc": "Fires before the state of the object is saved to the configured state provider. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", - "private": false, - "params": [ - { - "type": "Ext.state.Stateful", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "optional": false, - "doc": "The hash of state values. This is determined by calling\ngetState() on the object. This method must be provided by the\ndeveloper to return whetever representation of state is required, by default, Ext.state.Stateful\nhas a null implementation.
\n", - "name": "state" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "beforestatesave", - "owner": "Ext.state.Stateful", - "doc": "Fires before the state of the object is saved to the configured state provider. Return false to stop the save.
\n", - "linenr": 122, - "html_filename": "Stateful.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-event-cardswitch", - "shortDoc": "Fires after this container switches the active card. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Ext.container.Container", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "The card that has been switched to
\n", - "name": "newCard" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "The card that has been switched from
\n", - "name": "oldCard" - }, - { - "type": "Number", - "optional": false, - "doc": "The index of the card that has been switched to
\n", - "name": "index" - }, - { - "type": "Boolean", - "optional": false, - "doc": "True if this cardswitch was animated
\n", - "name": "animated" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "cardswitch", - "owner": "Ext.container.AbstractContainer", - "doc": "Fires after this container switches the active card. If the card\nis switched using an animation, this event will fire after the\nanimation has finished. This event is only available if this container\nuses a CardLayout. Note that TabPanel and Carousel both get a CardLayout\nby default, so both will have this event.
\n", - "linenr": 246, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Container3.html#Ext-grid-header-Container-event-columnhide", - "shortDoc": " ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Ext.grid.header.Container", - "optional": false, - "doc": "The grid's header Container which encapsulates all column headers.
\n", - "name": "ct" - }, - { - "type": "Ext.grid.column.Column", - "optional": false, - "doc": "The Column header Component which provides the column definition
\n", - "name": "column" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "columnhide", - "owner": "Ext.grid.header.Container", - "doc": "\n", - "linenr": 151, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Container3.html#Ext-grid-header-Container-event-columnmove", - "shortDoc": " ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Ext.grid.header.Container", - "optional": false, - "doc": "The grid's header Container which encapsulates all column headers.
\n", - "name": "ct" - }, - { - "type": "Ext.grid.column.Column", - "optional": false, - "doc": "The Column header Component which provides the column definition
\n", - "name": "column" - }, - { - "type": "Number", - "optional": false, - "doc": "\n", - "name": "fromIdx" - }, - { - "type": "Number", - "optional": false, - "doc": "\n", - "name": "toIdx" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "columnmove", - "owner": "Ext.grid.header.Container", - "doc": "\n", - "linenr": 143, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Container3.html#Ext-grid-header-Container-event-columnresize", - "shortDoc": " ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Ext.grid.header.Container", - "optional": false, - "doc": "The grid's header Container which encapsulates all column headers.
\n", - "name": "ct" - }, - { - "type": "Ext.grid.column.Column", - "optional": false, - "doc": "The Column header Component which provides the column definition
\n", - "name": "column" - }, - { - "type": "Number", - "optional": false, - "doc": "\n", - "name": "width" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "columnresize", - "owner": "Ext.grid.header.Container", - "doc": "\n", - "linenr": 117, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Container3.html#Ext-grid-header-Container-event-columnshow", - "shortDoc": " ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Ext.grid.header.Container", - "optional": false, - "doc": "The grid's header Container which encapsulates all column headers.
\n", - "name": "ct" - }, - { - "type": "Ext.grid.column.Column", - "optional": false, - "doc": "The Column header Component which provides the column definition
\n", - "name": "column" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "columnshow", - "owner": "Ext.grid.header.Container", - "doc": "\n", - "linenr": 157, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-deactivate", - "shortDoc": "Fires after a Component has been visually deactivated. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "deactivate", - "owner": "Ext.AbstractComponent", - "doc": "Fires after a Component has been visually deactivated.
\n", - "linenr": 579, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-destroy", - "shortDoc": "Fires after the component is destroyed. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "destroy", - "owner": "Ext.AbstractComponent", - "doc": "Fires after the component is destroyed.
\n", - "linenr": 666, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-disable", - "shortDoc": "Fires after the component is disabled. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "disable", - "owner": "Ext.AbstractComponent", - "doc": "Fires after the component is disabled.
\n", - "linenr": 593, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-enable", - "shortDoc": "Fires after the component is enabled. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "enable", - "owner": "Ext.AbstractComponent", - "doc": "Fires after the component is enabled.
\n", - "linenr": 599, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Container3.html#Ext-grid-header-Container-event-headerclick", - "shortDoc": " ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Ext.grid.header.Container", - "optional": false, - "doc": "The grid's header Container which encapsulates all column headers.
\n", - "name": "ct" - }, - { - "type": "Ext.grid.column.Column", - "optional": false, - "doc": "The Column header Component which provides the column definition
\n", - "name": "column" - }, - { - "type": "Ext.EventObject", - "optional": false, - "doc": "\n", - "name": "e" - }, - { - "type": "HTMLElement", - "optional": false, - "doc": "\n", - "name": "t" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "headerclick", - "owner": "Ext.grid.header.Container", - "doc": "\n", - "linenr": 125, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Container3.html#Ext-grid-header-Container-event-headertriggerclick", - "shortDoc": " ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Ext.grid.header.Container", - "optional": false, - "doc": "The grid's header Container which encapsulates all column headers.
\n", - "name": "ct" - }, - { - "type": "Ext.grid.column.Column", - "optional": false, - "doc": "The Column header Component which provides the column definition
\n", - "name": "column" - }, - { - "type": "Ext.EventObject", - "optional": false, - "doc": "\n", - "name": "e" - }, - { - "type": "HTMLElement", - "optional": false, - "doc": "\n", - "name": "t" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "headertriggerclick", - "owner": "Ext.grid.header.Container", - "doc": "\n", - "linenr": 134, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-hide", - "shortDoc": "Fires after the component is hidden. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "hide", - "owner": "Ext.AbstractComponent", - "doc": "Fires after the component is hidden.\nFires after the component is hidden when calling the hide method.
\n", - "linenr": 625, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Container3.html#Ext-grid-header-Container-event-menucreate", - "shortDoc": "Fired immediately after the column header menu is created. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Ext.grid.header.Container", - "optional": false, - "doc": "This instance
\n", - "name": "ct" - }, - { - "type": "Ext.menu.Menu", - "optional": false, - "doc": "The Menu that was created
\n", - "name": "menu" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "menucreate", - "owner": "Ext.grid.header.Container", - "doc": "Fired immediately after the column header menu is created.
\n", - "linenr": 170, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-move", - "shortDoc": "Fires after the component is moved. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Number", - "optional": false, - "doc": "The new x position
\n", - "name": "x" - }, - { - "type": "Number", - "optional": false, - "doc": "The new y position
\n", - "name": "y" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "move", - "owner": "Ext.AbstractComponent", - "doc": "Fires after the component is moved.
\n", - "linenr": 680, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractContainer2.html#Ext-container-AbstractContainer-event-remove", - "shortDoc": "@bubbles\nFires after any Ext.Component is removed from the container. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", - "private": false, - "params": [ - { - "type": "Ext.container.Container", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Ext.Component", - "optional": false, - "doc": "The component that was removed
\n", - "name": "component" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "remove", - "owner": "Ext.container.AbstractContainer", - "doc": "@bubbles\nFires after any Ext.Component is removed from the container.
\n", - "linenr": 224, - "html_filename": "AbstractContainer2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-removed", - "shortDoc": "Fires when a component is removed from an Ext.container.Container ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Ext.container.Container", - "optional": false, - "doc": "Container which holds the component
\n", - "name": "ownerCt" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "removed", - "owner": "Ext.AbstractComponent", - "doc": "Fires when a component is removed from an Ext.container.Container
\n", - "linenr": 632, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-render", - "shortDoc": "Fires after the component markup is rendered. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "render", - "owner": "Ext.AbstractComponent", - "doc": "Fires after the component markup is rendered.
\n", - "linenr": 646, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-resize", - "shortDoc": "Fires after the component is resized. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Number", - "optional": false, - "doc": "The box-adjusted width that was set
\n", - "name": "adjWidth" - }, - { - "type": "Number", - "optional": false, - "doc": "The box-adjusted height that was set
\n", - "name": "adjHeight" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "resize", - "owner": "Ext.AbstractComponent", - "doc": "Fires after the component is resized.
\n", - "linenr": 672, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-show", - "shortDoc": "Fires after the component is shown when calling the show method. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", - "private": false, - "params": [ - { - "type": "Ext.Component", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "show", - "owner": "Ext.AbstractComponent", - "doc": "Fires after the component is shown when calling the show method.
\n", - "linenr": 612, - "html_filename": "AbstractComponent.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Container3.html#Ext-grid-header-Container-event-sortchange", - "shortDoc": " ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/header/Container.js", - "private": false, - "params": [ - { - "type": "Ext.grid.header.Container", - "optional": false, - "doc": "The grid's header Container which encapsulates all column headers.
\n", - "name": "ct" - }, - { - "type": "Ext.grid.column.Column", - "optional": false, - "doc": "The Column header Component which provides the column definition
\n", - "name": "column" - }, - { - "type": "String", - "optional": false, - "doc": "\n", - "name": "direction" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "sortchange", - "owner": "Ext.grid.header.Container", - "doc": "\n", - "linenr": 163, - "html_filename": "Container3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Stateful.html#Ext-state-Stateful-event-staterestore", - "shortDoc": "Fires after the state of the object is restored. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", - "private": false, - "params": [ - { - "type": "Ext.state.Stateful", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "optional": false, - "doc": "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", - "name": "state" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "staterestore", - "owner": "Ext.state.Stateful", - "doc": "Fires after the state of the object is restored.
\n", - "linenr": 112, - "html_filename": "Stateful.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "event", - "href": "Stateful.html#Ext-state-Stateful-event-statesave", - "shortDoc": "Fires after the state of the object is saved to the configured state provider. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", - "private": false, - "params": [ - { - "type": "Ext.state.Stateful", - "optional": false, - "doc": "\n", - "name": "this" - }, - { - "type": "Object", - "optional": false, - "doc": "The hash of state values. This is determined by calling\ngetState() on the object. This method must be provided by the\ndeveloper to return whetever representation of state is required, by default, Ext.state.Stateful\nhas a null implementation.
\n", - "name": "state" - }, - { - "type": "Object", - "tagname": "param", - "name": "options", - "doc": "The options object passed to Ext.util.Observable.addListener.
\n" - } - ], - "name": "statesave", - "owner": "Ext.state.Stateful", - "doc": "Fires after the state of the object is saved to the configured state provider.
\n", - "linenr": 133, - "html_filename": "Stateful.html" - } - ] - }, - "singleton": false, - "alias": null, - "superclasses": [ - "Ext.Base", - "Ext.AbstractComponent", - "Ext.Component", - "Ext.container.AbstractContainer", - "Ext.container.Container", - "Ext.grid.header.Container" - ], - "protected": false, - "tagname": "class", - "mixins": [ - - ], - "href": "Column2.html#Ext-grid-column-Column", - "subclasses": [ - "Ext.grid.column.Date", - "Ext.grid.column.Boolean", - "Ext.grid.column.Action", - "Ext.grid.column.Number", - "Ext.grid.column.Template", - "Ext.grid.RowNumberer" - ], - "static": false, - "author": null, - "component": true, - "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/column/Column.js", - "private": false, - "alternateClassNames": [ - "Ext.grid.Column" - ], - "name": "Ext.grid.column.Column", - "doc": "This class specifies the definition for a column inside a Ext.grid.Panel. It encompasses\nboth the grid header configuration as well as displaying data within the grid itself. If the\ncolumns configuration is specified, this column will become a column group and can\ncontainer other columns inside. In general, this class will not be created directly, rather\nan array of column configurations will be passed to the grid:
\n\n\n\nExt.create('Ext.data.Store', {\n storeId:'employeeStore',\n fields:['firstname', 'lastname', 'senority', 'dep', 'hired'],\n data:[\n {firstname:\"Michael\", lastname:\"Scott\", senority:7, dep:\"Manangement\", hired:\"01/10/2004\"},\n {firstname:\"Dwight\", lastname:\"Schrute\", senority:2, dep:\"Sales\", hired:\"04/01/2004\"},\n {firstname:\"Jim\", lastname:\"Halpert\", senority:3, dep:\"Sales\", hired:\"02/22/2006\"},\n {firstname:\"Kevin\", lastname:\"Malone\", senority:4, dep:\"Accounting\", hired:\"06/10/2007\"},\n {firstname:\"Angela\", lastname:\"Martin\", senority:5, dep:\"Accounting\", hired:\"10/21/2008\"}\n ]\n});\n\nExt.create('Ext.grid.Panel', {\n title: 'Column Demo',\n store: Ext.data.StoreManager.lookup('employeeStore'),\n columns: [\n {text: 'First Name', dataIndex:'firstname'},\n {text: 'Last Name', dataIndex:'lastname'},\n {text: 'Hired Month', dataIndex:'hired', xtype:'datecolumn', format:'M'},\n {text: 'Deparment (Yrs)', xtype:'templatecolumn', tpl:'{dep} ({senority})'}\n ],\n width: 400,\n renderTo: Ext.getBody()\n});\n
\n\nThere are several column subclasses that provide default rendering for various data types
\n\nThe columns are laid out by a Ext.layout.container.HBox layout, so a column can either\nbe given an explicit width value or a flex configuration. If no width is specified the grid will\nautomatically the size the column to 100px. For column groups, the size is calculated by measuring\nthe width of the child columns, so a width option should not be specified in that case.
\n\nAlternate names
Ext.grid.ColumnHierarchy
Mixins
Requires
Files
This class specifies the definition for a column inside a Ext.grid.Panel. It encompasses\nboth the grid header configuration as well as displaying data within the grid itself. If the\ncolumns configuration is specified, this column will become a column group and can\ncontain other columns inside. In general, this class will not be created directly, rather\nan array of column configurations will be passed to the grid:
\n\nExt.create('Ext.data.Store', {\n storeId:'employeeStore',\n fields:['firstname', 'lastname', 'senority', 'dep', 'hired'],\n data:[\n {firstname:\"Michael\", lastname:\"Scott\", senority:7, dep:\"Manangement\", hired:\"01/10/2004\"},\n {firstname:\"Dwight\", lastname:\"Schrute\", senority:2, dep:\"Sales\", hired:\"04/01/2004\"},\n {firstname:\"Jim\", lastname:\"Halpert\", senority:3, dep:\"Sales\", hired:\"02/22/2006\"},\n {firstname:\"Kevin\", lastname:\"Malone\", senority:4, dep:\"Accounting\", hired:\"06/10/2007\"},\n {firstname:\"Angela\", lastname:\"Martin\", senority:5, dep:\"Accounting\", hired:\"10/21/2008\"}\n ]\n});\n\nExt.create('Ext.grid.Panel', {\n title: 'Column Demo',\n store: Ext.data.StoreManager.lookup('employeeStore'),\n columns: [\n {text: 'First Name', dataIndex:'firstname'},\n {text: 'Last Name', dataIndex:'lastname'},\n {text: 'Hired Month', dataIndex:'hired', xtype:'datecolumn', format:'M'},\n {text: 'Department (Yrs)', xtype:'templatecolumn', tpl:'{dep} ({senority})'}\n ],\n width: 400,\n renderTo: Ext.getBody()\n});\n
\n\nThere are several column subclasses that provide default rendering for various data types
\n\nThe columns are laid out by a Ext.layout.container.HBox layout, so a column can either\nbe given an explicit width value or a flex configuration. If no width is specified the grid will\nautomatically the size the column to 100px. For column groups, the size is calculated by measuring\nthe width of the child columns, so a width option should not be specified in that case.
\n\nA string component id or the numeric index of the component that should be initially activated within the\ncontainer's layout on render. For example, activeItem: 'item-1' or activeItem: 0 (index 0 = the first\nitem in the container's collection). activeItem only applies to layout styles that can display\nitems one at a time (like Ext.layout.container.Card and Ext.layout.container.Fit).
\nSets the alignment of the header and rendered columns. Defaults to 'left'.
\nDefaults to: "left"
If true the container will automatically destroy any contained component that is removed from it, else\ndestruction must be handled manually.\nDefaults to true.
\nDefaults to: true
A tag name or DomHelper spec used to create the Element which will\nencapsulate this Component.
\n\nYou 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\nThis 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
\nThis config is intended mainly for non-floating Components which may or may not be shown. Instead of using\nrenderTo in the configuration, and rendering upon construction, this allows a Component to render itself\nupon first show. If floating is true, the value of this config is omited as if it is true
.
Specify as true
to have this Component render to the document body upon first show.
Specify as an element, or the ID of an element to have this Component render to a specific element upon first\nshow.
\n\nThis defaults to true
for the Window class.
Defaults to: false
true
to use overflow:'auto' on the components layout element and show scroll bars automatically when necessary,\nfalse
to clip any overflowing content.
Defaults to: false
True to automatically show the component upon creation. This config option may only be used for\nfloating components or components that use autoRender. Defaults to false.
\nDefaults to: false
The base CSS class to apply to this components's element. This will also be prepended to elements within this\ncomponent like Panel's body will get a class x-panel-body. This means that if you create a subclass of Panel, and\nyou want it to get all the Panels styling for the element and the body, you leave the baseCls x-panel and use\ncomponentCls to add specific styling for this component.
\nDefaults to: "x-component"
Specifies the border for this component. The border can be a single numeric value to apply to all sides or it can\nbe a CSS style specification for each style, for example: '10 5 3 10'.
\nAn array of events that, when fired, should be bubbled to any parent container.\nSee Ext.util.Observable.enableBubble.\nDefaults to ['add', 'remove']
.\n\n
Defaults to: ["add", "remove"]
An array describing the child elements of the Component. Each member of the array\nis an object with these properties:
\n\nname
- The property name on the Component for the child element.itemId
- The id to combine with the Component's id that is the id of the child element.id
- The id of the child element.If the array member is a string, it is equivalent to { name: m, itemId: m }
.
For example, a Component which renders a title and body text:
\n\nExt.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\nA more flexible, but somewhat slower, approach is renderSelectors.
\nAn optional extra CSS class that will be added to this component's Element. This can be useful\nfor adding customized styles to the component or any of its children using standard CSS rules.
\nDefaults to: ""
An optional array of sub-column definitions. This column becomes a group, and houses the columns defined in the\ncolumns
config.
Group columns may not be sortable. But they may be hideable and moveable. And you may move headers into and out\nof a group. Note that if all sub columns are dragged out of a group, the group is destroyed.
\nCSS Class to be added to a components root level element to give distinction to it via styling.
\nCSS Class to be added to a components root level element to give distinction to it via styling.
\nThe 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\nGenerally, 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\nThe 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.
\nSpecify an existing HTML element, or the id
of an existing HTML element to use as the content for this component.
This config option is used to take an existing HTML element and place it in the layout element of a new component\n(it simply moves the specified DOM element after the Component is rendered to use as the content.
\n\nNotes:
\n\nThe 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\nThe 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
.
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.
The name of the field in the grid's Ext.data.Store's Ext.data.Model definition from\nwhich to draw the column's value. Required.
\nDefaults to: null
The default xtype of child Components to create in this Container when\na child item is specified as a raw configuration object, rather than as an instantiated Component.
\n\n\nDefaults to 'panel'
.
Defaults to: "panel"
Width of the header if no width or flex is specified. Defaults to 100.
\nDefaults to: 100
This option is a means of applying default settings to all added items whether added through the items\nconfig or via the add or insert methods.
\n\nDefaults are applied to both config objects and instantiated components conditionally so as not to override\nexisting properties in the item (see Ext.applyIf).
\n\nIf the defaults option is specified as a function, then the function will be called using this Container as the\nscope (this
reference) and passing the added item as the first parameter. Any resulting object\nfrom that call is then applied to the item as default properties.
For example, to automatically apply padding to the body of each of a set of\ncontained Ext.panel.Panel items, you could pass: defaults: {bodyStyle:'padding:15px'}
.
Usage:
\n\ndefaults: { // defaults are applied to items, not the container\n autoScroll: true\n},\nitems: [\n // default will not be applied here, panel1 will be autoScroll: false\n {\n xtype: 'panel',\n id: 'panel1',\n autoScroll: false\n },\n // this component will have autoScroll: true\n new Ext.panel.Panel({\n id: 'panel2'\n })\n]\n
\nCSS class to add when the Component is disabled. Defaults to 'x-item-disabled'.
\nDefaults to: "x-item-disabled"
False to disable drag-drop reordering of this column. Defaults to true.
\nDefaults to: true
True to prevent the column from being resizable.
\nThis cfg has been deprecated since .
\nSpecify as true to float the Component outside of the document flow using CSS absolute positioning.
\n\nComponents such as Windows and Menus are floating by default.
\n\nFloating Components that are programatically rendered will register themselves with\nthe global ZIndexManager
\n\nA 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\nWhen 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\nThe 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\nIf no floating ancestor is found, a floating Component registers itself with the default ZIndexManager.
\n\nFloating components do not participate in the Container's layout. Because of this, they are not rendered until\nyou explicitly show them.
\n\nAfter 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.
\nDefaults to: false
Specifies whether the floated component should be automatically focused when\nit is brought to the front.
\nDefaults to: true
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.
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\nThe extra space taken up by this framing is available from the read only property frameSize.
\nIf the grid uses a Ext.grid.feature.Grouping, this option may be used to disable the header menu\nitem to group by the column selected. By default, the header menu group option is enabled. Set to false to\ndisable (but still show) the group option in the header menu for the column.
\nA String which specifies how this Component's encapsulating DOM element will be hidden. Values may be:
\n\n'display'
: The Component will be hidden using the display: none
style.'visibility'
: The Component will be hidden using the visibility: hidden
style.'offsets'
: The Component will be hidden by absolutely positioning it out of the visible area of the document.\nThis is useful when a hidden Component must maintain measurable dimensions. Hiding using display
results in a\nComponent having zero dimensions.Defaults to: "display"
False to prevent the user from hiding this column. Defaults to true.
\nDefaults to: true
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.
\nDefaults to: ""
The unique id of this component instance.
\n\nIt 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\nInstead 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\nNote 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\nNote: to avoid complications imposed by a unique id also see itemId
.
Note: to access the container of a Component see ownerCt
.
Defaults to an auto-assigned id.
\nAn 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
.
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\nAlso see id, Ext.container.Container.query
, Ext.container.Container.down
and\nExt.container.Container.child
.
Note: to access the container of an item see ownerCt.
\nA single item, or an array of child Components to be added to this container
\n\n\nUnless configured with a layout, a Container simply renders child Components serially into\nits encapsulating element and performs no sizing or positioning upon them.
\n
Example:
\n// specifying a single item\nitems: {...},\nlayout: 'fit', // The single items is sized to fit\n\n// specifying multiple items\nitems: [{...}, {...}],\nlayout: 'hbox', // The items are arranged horizontally\n
\nEach item may be:
\nIf a configuration object is specified, the actual type of Component to be\ninstantiated my be indicated by using the xtype option.
\nEvery Component class has its own xtype.
\nIf an xtype is not explicitly\nspecified, the defaultType for the Container is used, which by default is usually panel
.
Notes:
\nExt uses lazy rendering. Child Components will only be rendered\nshould it become necessary. Items are automatically laid out when they are first\nshown (no sizing is done while hidden), or in response to a doLayout call.
\n\n\nImportant: In order for child items to be correctly sized and\npositioned, typically a layout manager must be specified through\nthe layout
configuration option.
The sizing and positioning of child items is the responsibility of\nthe Container's layout manager which creates and manages the type of layout\nyou have in mind. For example:
\n\n\nIf the layout configuration is not explicitly specified for\na general purpose container (e.g. Container or Panel) the\ndefault layout manager will be used\nwhich does nothing but render child components sequentially into the\nContainer (no sizing or positioning will be performed in this situation).
\n\n\nlayout
may be specified as either as an Object or as a String:
layout: {\n type: 'vbox',\n align: 'left'\n}\n
\n\ntype
The layout type to be used for this container. If not specified,\na default Ext.layout.container.Auto will be created and used.
\nValid layout type
values are:
Additional layout specific configuration properties may also be\nspecified. For complete details regarding the valid config options for\neach layout type, see the layout class corresponding to the type
\nspecified.
layout: 'vbox'\n
\nlayout
The layout type
to be used for this container (see list\nof valid layout type values above).
Additional layout specific configuration properties. For complete\ndetails regarding the valid config options for each layout type, see the\nlayout class corresponding to the layout
specified.
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\nDOM events from Ext JS Components
\n\nWhile 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:
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
\nA configuration object or an instance of a Ext.ComponentLoader to load remote content for this Component.
\nA configuration object or an instance of a Ext.ComponentLoader to load remote content for this Component.
\nSpecifies 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'.
\nThe maximum value in pixels which this Component will set its height to.
\n\nWarning: This will override any size management applied by layout managers.
\nThe maximum value in pixels which this Component will set its width to.
\n\nWarning: This will override any size management applied by layout managers.
\nThe minimum value in pixels which this Component will set its height to.
\n\nWarning: This will override any size management applied by layout managers.
\nThe minimum value in pixels which this Component will set its width to.
\n\nWarning: This will override any size management applied by layout managers.
\nAn optional extra CSS class that will be added to this component's Element when the mouse moves over the Element,\nand removed when the mouse moves out. This can be useful for adding customized 'active' or 'hover' styles to the\ncomponent or any of its children using standard CSS rules.
\nDefaults to: ""
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'.
\nAn object or array of objects that will provide custom functionality for this component. The only requirement for\na valid plugin is that it contain an init method that accepts a reference of type Ext.Component. When a component\nis created, if any plugins are available, the component will call the init method on each plugin, passing a\nreference to itself. Each plugin can then call methods or respond to events on the component as needed to provide\nits functionality.
\nThe data used by renderTpl in addition to the following property values of the component:
\n\nSee renderSelectors and childEls for usage examples.
\nAn object containing properties specifying DomQuery selectors which identify child elements\ncreated by the render process.
\n\nAfter 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.
For example, a Component which renderes a title and description into its element:
\n\nExt.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\nFor 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.
\nSpecify the id of the element, a DOM element or an existing Element that this component will be rendered into.
\n\nNotes:
\n\nDo 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\nWhen using this config, a call to render() is not required.
\n\nSee render
also.
An XTemplate used to create the internal structure inside this Component's encapsulating\nElement.
\n\nYou do not normally need to specify this. For the base classes Ext.Component and\nExt.container.Container, this defaults to null
which means that they will be initially rendered\nwith no internal structure; they render their Element empty. The more specialized ExtJS and Touch\nclasses which use a more complex DOM structure, provide their own template definitions.
This is intended to allow the developer to create application-specific utility Components with customized\ninternal structure.
\n\nUpon rendering, any created child elements may be automatically imported into object properties using the\nrenderSelectors and childEls options.
\nDefaults to: null
A renderer is an 'interceptor' method which can be used transform data (value, appearance, etc.)\nbefore it is rendered. Example:
\n\n{\n renderer: function(value){\n if (value === 1) {\n return '1 person';\n }\n return value + ' people';\n }\n}\n
\nDefaults to: false
The data value for the current cell
\nA collection of metadata about the current cell; can be used or modified\nby the renderer. Recognized properties are: tdCls, tdAttr, and style.
\nThe record for the current row
\nThe index of the current row
\nThe index of the current column
\nThe data store
\nThe current view
\nThe HTML string to be rendered.
\nSet to false
to prevent the column from being resizable. Defaults to true
A valid Ext.resizer.Resizer handles config string. Only applies when resizable = true.
\nDefaults to: "all"
A buffer to be applied if many state events are fired within a short period.
\nDefaults to: 100
Specifies whether the floating component should be given a shadow. Set to true to automatically create an Ext.Shadow, or a string indicating the shadow's display Ext.Shadow.mode. Set to false to disable the\nshadow.
\nDefaults to: "sides"
False to disable sorting of this column. Whether local/remote sorting is used is specified in\nExt.data.Store.remoteSort
. Defaults to true.
Defaults to: true
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']).
See stateful
for an explanation of saving and\nrestoring object state.
The unique id for this object to use for state management purposes.
\n\nSee stateful for an explanation of saving and restoring state.
\n\nA flag which causes the object to attempt to restore the state of\ninternal properties from a saved state on startup. The object must have\na stateId
for state to be managed.\nAuto-generated ids are not guaranteed to be stable across page loads and\ncannot be relied upon to save and restore the same state for a object.
\n
For state saving to work, the state manager's provider must have been\nset to an implementation of Ext.state.Provider which overrides the\nset and get\nmethods to save and recall name/value pairs. A built-in implementation,\nExt.state.CookieProvider is available.
\nTo set the state provider for the current page:
\nExt.state.Manager.setProvider(new Ext.state.CookieProvider({\n expires: new Date(new Date().getTime()+(1000*60*60*24*7)), //7 days from now\n}));\n
\nA stateful object attempts to save state when one of the events\nlisted in the stateEvents
configuration fires.
To save state, a stateful object first serializes its state by\ncalling getState
. By default, this function does\nnothing. The developer must provide an implementation which returns an\nobject hash which represents the restorable state of the object.
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
.
During construction, a stateful object attempts to restore\nits state by calling Ext.state.Manager.get passing the\nstateId
The resulting object is passed to applyState
.\nThe default implementation of applyState
simply copies\nproperties into the object, but a developer may override this to support\nmore behaviour.
You can perform extra processing on state save and restore by attaching\nhandlers to the beforestaterestore, staterestore,\nbeforestatesave and statesave events.
\n\nDefaults to: true
A custom style specification to be applied to this component's Element. Should be a valid argument to\nExt.Element.applyStyles.
\n\nnew 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
\nThe class that is added to the content target when you set styleHtmlContent to true.
\nDefaults to: "x-html"
True to automatically style the html inside the content target of this component (body for panels).
\nDefaults to: false
If true, suspend calls to doLayout. Useful when batching multiple adds to a container and not passing them\nas multiple arguments or an array.
\nDefaults to: false
A CSS class names to apply to the table cells for this column.
\nA CSS class names to apply to the table cells for this column.
\nThe header text to be used as innerHTML (html tags are accepted) to display in the Grid.\nNote: to have a clickable header with no text displayed you can use the default of  
aka
.
Defaults to: " "
An Ext.Template, Ext.XTemplate or an array of strings to form an Ext.XTemplate. Used in\nconjunction with the data
and tplWriteMode
configurations.
The Ext.(X)Template method to use when updating the content area of the Component.\nSee Ext.XTemplate.overwrite
for information on default mode.
Defaults to: "overwrite"
A set style for a component. Can be a string or an Array of multiple strings (UIs)
\nDefaults to: "default"
HeaderContainer overrides the default weight of 0 for all docked items to 100.\nThis is so that it has more priority over things like toolbars.
\nDefaults to: 100
The xtype
configuration option can be used to optimize Component creation and rendering. It serves as a\nshortcut to the full componet name. For example, the component Ext.button.Button
has an xtype of button
.
You can define your own xtype on a custom component by specifying the\nalias config option with a prefix of widget
. For example:
Ext.define('PressMeButton', {\n extend: 'Ext.button.Button',\n alias: 'widget.pressmebutton',\n text: 'Press Me'\n})\n
\n\nAny Component can be created implicitly as an object config with an xtype specified, allowing it to be\ndeclared and passed into the rendering pipeline without actually being instantiated as an object. Not only is\nrendering deferred, but the actual creation of the object itself is also deferred, saving memory and resources\nuntil they are actually needed. In complex, nested layouts containing many Components, this can make a\nnoticeable improvement in performance.
\n\n// Explicit creation of contained Components:\nvar panel = new Ext.Panel({\n ...\n items: [\n Ext.create('Ext.button.Button', {\n text: 'OK'\n })\n ]\n};\n\n// Implicit creation using xtype:\nvar panel = new Ext.Panel({\n ...\n items: [{\n xtype: 'button',\n text: 'OK'\n }]\n};\n
\n\nIn the first example, the button will always be created immediately during the panel's initialization. With\nmany added Components, this approach could potentially slow the rendering of the page. In the second example,\nthe button will not be created or rendered until the panel is actually displayed in the browser. If the panel\nis never displayed (for example, if it is a tab that remains hidden) then the button will never be created and\nwill never consume any resources whatsoever.
\nRead-only property indicating whether or not the component can be dragged
\nRead-only property indicating whether or not the component can be dragged
\nOnly present for floating Components which were inserted as descendant items of floating Containers.
\n\nFloating Components that are programatically rendered will not have a floatParent
\nproperty.
For floating Components which are child items of a Container, the floatParent will be the floating\nancestor Container which is responsible for the base z-index value of all its floating descendants. It provides\na ZIndexManager which provides z-indexing services for all its descendant floating\nComponents.
\n\nFor example, the dropdown BoundList of a ComboBox which is in a Window will have the\nWindow as its floatParent
See floating and zIndexManager
\nRead-only property indicating the width of any framing elements which were added within the encapsulating element\nto provide graphical, rounded borders. See the frame config.
\n\nThis is an object containing the frame width in pixels for all four sides of the Component containing the\nfollowing properties:
\ntrue
if this HeaderContainer is in fact a group header which contains sub headers.
true
if this HeaderContainer is in fact a group header which contains sub headers.
The MixedCollection containing all the child items of this container.
\nThe MixedCollection containing all the child items of this container.
\nThis is an internal flag that you use when creating custom components. By default this is set to true which means\nthat every component gets a mask when its disabled. Components like FieldContainer, FieldSet, Field, Button, Tab\noverride this property to false since they want to implement custom disable logic.
\nRead-only property indicating whether or not the component has been rendered.
\nRead-only property indicating whether or not the component has been rendered.
\nGet 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
Ext.define('My.Cat', {\n statics: {\n speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n },\n\n constructor: function() {\n alert(this.self.speciesName); / dependent on 'this'\n\n return this;\n },\n\n clone: function() {\n return new this.self();\n }\n});\n\n\nExt.define('My.SnowLeopard', {\n extend: 'My.Cat',\n statics: {\n speciesName: 'Snow Leopard' // My.SnowLeopard.speciesName = 'Snow Leopard'\n }\n});\n\nvar cat = new My.Cat(); // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone)); // alerts 'My.SnowLeopard'\n
\nElement that contains the text in column header.
\nElement that contains the text in column header.
\nElement that acts as button for column header dropdown menu.
\nElement that acts as button for column header dropdown menu.
\nOnly present for floating Components after they have been rendered.
\n\nA reference to the ZIndexManager which is managing this Component's z-index.
\n\nThe 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\nFloating Components may be brought to the front or sent to the back of the\nz-index stack.
\n\nThis defaults to the global ZIndexManager for floating Components that are\nprogramatically rendered.
\n\nFor floating Components which are added to a Container, the ZIndexManager is acquired from the first\nancestor Container found which is floating, or if not found the global ZIndexManager is\nused.
\n\nSee floating and floatParent
\nCreates new Component.
\nThe configuration options may be specified as either:
\n\nAdds Component(s) to this Container.
\n\ndefaults
for details).add
event after the component has been added.If the Container is already rendered when add
\nis called, it will render the newly added Component into its content area.
If the Container was configured with a size-managing layout manager, the Container\nwill recalculate its internal layout at this time too.
\n\nNote that the default layout manager simply renders child Components sequentially into the content area and thereafter performs no sizing.
\n\nIf adding multiple new child Components, pass them as an array to the add
method, so that only one layout recalculation is performed.
tb = new Ext.toolbar.Toolbar({\n renderTo: document.body\n}); // toolbar is rendered\ntb.add([{text:'Button 1'}, {text:'Button 2'}]); // add multiple items. (defaultType for Toolbar is 'button')\n
\n\nComponents directly managed by the BorderLayout layout manager\nmay not be removed or added. See the Notes for BorderLayout\nfor more details.
\nEither one or more Components to add or an Array of Components to add.\nSee items
for additional information.
The Components that were added.
\nAdds each argument passed to this method to the childEls array.
\nAdds a CSS class to the top level element representing this component.
\nThe CSS class name to add
\nReturns the Component to allow method chaining.
\nAdds a CSS class to the top level element representing this component.
\nThe CSS class name to add
\nReturns the Component to allow method chaining.
\nAdds a cls to the uiCls array, which will also call addUIClsToElement and adds to all elements of this\ncomponent.
\nAdds the specified events to the list of events which this Observable may fire.
\nEither an object with event names as properties with a value of true
or the first\nevent name string if multiple event names are being passed as separate parameters. Usage:
this.addEvents({\n storeloaded: true,\n storecleared: true\n});\n
\nAdditional event names if multiple event names are being passed as separate\nparameters. Usage:
\n\nthis.addEvents('storeloaded', 'storecleared');\n
\nAppends an event handler to this object.
\nThe name of the event to listen for. May also be an object who's property names are\nevent names.
\n\nThe method the event invokes. Will be called with arguments given to\nfireEvent plus the options
parameter described below.
The scope (this
reference) in which the handler function is executed. If\nomitted, defaults to the object which fired the event.
An object containing handler configuration.
\n\n\n\n\nNote: Unlike in ExtJS 3.x, the options object will also be passed as the last argument to every event handler.
\n\n\n\n\nThis object may contain any of the following properties:
\n\n\n\n\nscope : Object
\n\nThe scope (this
reference) in which the handler function is executed. If omitted, defaults to the object\nwhich fired the event.
delay : Number
\n\nThe number of milliseconds to delay the invocation of the handler after the event fires.
single : Boolean
\n\nTrue to add a handler to handle just the next firing of the event, and then remove itself.
buffer : Number
\n\nCauses the handler to be scheduled to run in an Ext.util.DelayedTask delayed by the specified number of\nmilliseconds. If the event fires again within that time, the original handler is not invoked, but the new\nhandler is scheduled in its place.
target : Observable
\n\nOnly call the handler if the event was fired on the target Observable, not if the event was bubbled up from a\nchild Observable.
element : String
\n\nThis option is only valid for listeners bound to Components. The name of a Component\nproperty which references an element to add a listener to.
\n\nThis option is useful during Component construction to add DOM event listeners to elements of\nComponents which will exist only after the Component is rendered.\nFor example, to add a click listener to a Panel's body:
\n\nnew Ext.panel.Panel({\n title: 'The title',\n listeners: {\n click: this.handlePanelClick,\n element: 'body'\n }\n});\n
Combining Options
\n\n\n\n\nUsing the options argument, it is possible to combine different types of listeners:
\n\n\n\n\nA delayed, one-time listener.
\n\n\n\n\nmyPanel.on('hide', this.handleClick, this, {\n single: true,\n delay: 100\n});\n
\n\n\n\n\nAttaching multiple handlers in 1 call
\n\n\n\n\nThe method also allows for a single argument to be passed which is a config object containing properties which\nspecify multiple events. For example:
\n\n\n\n\nmyGridPanel.on({\n cellClick: this.onCellClick,\n mouseover: this.onMouseOver,\n mouseout: this.onMouseOut,\n scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n
\n\n\n\n\nOne can also specify options for each event handler separately:
\n\n\n\n\nmyGridPanel.on({\n cellClick: {fn: this.onCellClick, scope: this, single: true},\n mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
\n\nAdds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is\ndestroyed.
\nThe item to which to add a listener/listeners.
\n\nThe event name, or an object containing event name properties.
\n\nIf the ename
parameter was an event name, this is the handler function.
If the ename
parameter was an event name, this is the scope (this
reference)\nin which the handler function is executed.
If the ename
parameter was an event name, this is the\naddListener options.
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.
\nThe UI to remove from the element
\nOccurs after componentLayout is run.
\nThe box-adjusted width that was set
\nThe box-adjusted height that was set
\nWhether or not the height/width are stored on the component permanently
\nContainer requesting the layout. Only used when isSetSize is false.
\nAligns this floating Component to the specified element
\nThe element or Ext.Component to align to. If passing a component, it must be a\nomponent instance. If a string id is passed, it will be used as an element id.
\nThe position to align to (see Ext.Element.alignTo for more details).
\nDefaults to: "tl-bl?"
Offset the positioning by [x, y]
\nthis
\nPerform custom animation on this object.
\n
This method is applicable to both the Component class and the Element class.\nIt performs animated transitions of certain properties of this object over a specified timeline.
\nThe sole parameter is an object which specifies start property values, end property values, and properties which\ndescribe the timeline. Of the properties listed below, only to
is mandatory.
Properties include
from
to
duration
easing
\n- ease
\n- easeIn
\n- easeOut
\n- easeInOut
\n- backIn
\n- backOut
\n- elasticIn
\n- elasticOut
\n- bounceIn
\n- bounceOut
\n
keyframes
listeners
beforeanimate
event or the afteranimate
event.from
, to
, and keyframe
objects:x
y
left
left
value. Units must be supplied.top
top
value. Units must be supplied.width
width
value. Units must be supplied.height
height
value. Units must be supplied.scrollLeft
scrollLeft
value.scrollTop
scrollLeft
value.opacity
opacity
value. This must be a value between 0
and 1
.Be aware than animating an Element which is being used by an Ext Component without in some way informing the Component about the changed element state\nwill result in incorrect Component behaviour. This is because the Component will be using the old state of the element. To avoid this problem, it is now possible to\ndirectly animate certain properties of Components.
\nfrom
, to
, and keyframe
objects:x
y
left
left
value in pixels.top
top
value in pixels.width
width
value in pixels.width
width
value in pixels.dynamic
For example, to animate a Window to a new size, ensuring that its internal layout, and any shadow is correct:
\nmyWindow = 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
\nFor performance reasons, by default, the internal layout is only updated when the Window reaches its final \"to\"
size. If dynamic updating of the Window's child\nComponents is required, then configure the animation with dynamic: true
and the two child items will maintain their proportions during the animation.
An object containing properties which describe the animation's start and end states, and the timeline of the animation.
\nthis
\nApplies 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.
\nThe state
\nOccurs before componentLayout is run. Returning false from this method will prevent the componentLayout from\nbeing executed.
\nThe box-adjusted width that was set
\nThe box-adjusted height that was set
\nWhether or not the height/width are stored on the component permanently
\nContainer requesting sent the layout. Only used when isSetSize is false.
\nOccurs before componentLayout is run. Returning false from this method will prevent the containerLayout\nfrom being executed.
\nBubbles 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.
\nThe function to call
\nThe scope of the function. Defaults to current node.
\nThe args to call the function with. Defaults to passing the current component.
\nthis
\nCall the original method that was previously overridden with override
\n\nExt.define('My.Cat', {\n constructor: function() {\n alert(\"I'm a cat!\");\n\n return this;\n }\n});\n\nMy.Cat.override({\n constructor: function() {\n alert(\"I'm going to be a cat!\");\n\n var instance = this.callOverridden();\n\n alert(\"Meeeeoooowwww\");\n\n return instance;\n }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n // alerts \"I'm a cat!\"\n // alerts \"Meeeeoooowwww\"\n
\nThe arguments, either an array or the arguments
object
Returns the result after calling the overridden method
\nCall the parent's overridden method. For example:
\n\nExt.define('My.own.A', {\n constructor: function(test) {\n alert(test);\n }\n});\n\nExt.define('My.own.B', {\n extend: 'My.own.A',\n\n constructor: function(test) {\n alert(test);\n\n this.callParent([test + 1]);\n }\n});\n\nExt.define('My.own.C', {\n extend: 'My.own.B',\n\n constructor: function() {\n alert(\"Going to call parent's overriden constructor...\");\n\n this.callParent(arguments);\n }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n // alerts '2', then alerts '3'\n
\nThe arguments, either an array or the arguments
object\nfrom the current method, for example: this.callParent(arguments)
Returns the result from the superclass' method
\nCascades down the component/container heirarchy from this component (passed in the first call), calling the specified function with\neach component. The scope (this
reference) of the\nfunction call will be the scope provided or the current component. The arguments to the function\nwill be the args provided or the current component. If the function returns false at any point,\nthe cascade is stopped on that branch.
The function to call
\nThe scope of the function (defaults to current component)
\nThe args to call the function with. The current component always passed as the last argument.
\nthis
\nRetrieves the first direct child of this container which matches the passed selector.\nThe passed in selector must comply with an Ext.ComponentQuery selector.
\nAn Ext.ComponentQuery selector. If no selector is\nspecified, the first child will be returned.
\nRemoves all listeners for this object including the managed listeners
\nClone the current component using the original config values passed into this instance by default.
\nA 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.
\nclone The cloned copy of this component
\nEnsures that the plugins array contains fully constructed plugin instances. This converts any configs into their\nappropriate instances.
\nDisable the component.
\nPassing true will supress the 'disable' event from being fired.
\nDefaults to: false
Handles autoRender. Floating Components may have an ownerCt. If they are asking to be constrained, constrain them\nwithin that ownerCt, and have their z-index managed locally. Floating Components are always rendered to\ndocument.body
\nThis method needs to be called whenever you change something on this component that requires the Component's\nlayout to be recalculated.
\nthis
\nMoves this floating Component into a constrain region.
\n\nBy default, this Component is constrained to be within the container it was added to, or the element it was\nrendered to.
\n\nAn alternative constraint may be passed.
\nThe Element or Region into which this Component is\nto be constrained. Defaults to the element into which this floating Component was rendered.
\nManually force this container's layout to be recalculated. The framework uses this internally to refresh layouts\nform most cases.
\nthis
\nRetrieves the first descendant of this container which matches the passed selector.\nThe passed in selector must comply with an Ext.ComponentQuery selector.
\nAn Ext.ComponentQuery selector. If no selector is\nspecified, the first child will be returned.
\nEnable the component
\nPassing true will supress the 'enable' event from being fired.
\nDefaults to: false
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.
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\nExample:
\n\nExt.override(Ext.form.field.Base, {\n // Add functionality to Field's initComponent to enable the change event to bubble\n initComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n this.enableBubble('change');\n }),\n\n // We know that we want Field's events to bubble directly to the FormPanel.\n getBubbleTarget : function() {\n if (!this.formPanel) {\n this.formPanel = this.findParentByType('form');\n }\n return this.formPanel;\n }\n});\n\nvar myForm = new Ext.formPanel({\n title: 'User Details',\n items: [{\n ...\n }],\n listeners: {\n change: function() {\n // Title goes red if form has been modified.\n myForm.header.setStyle('color', 'red');\n }\n }\n});\n
\nThis method finds the topmost active layout who's processing will eventually determine the size and position of\nthis Component.
\n\nThis method is useful when dynamically adding Components into Containers, and some processing must take place\nafter the final sizing and positioning of the Component has been performed.
\nFind a container above this component at any level by a custom function. If the passed function returns true, the\ncontainer will be returned.
\nThe custom function to call with the arguments (container, this component).
\nThe first Container for which the custom function returns true
\nFind a container above this component at any level by xtype or class
\n\nSee also the up method.
\nThe first Container which matches the given xtype or class
\nFires the specified event with the passed parameters (minus the event name, plus the options
object passed\nto addListener).
An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget) by\ncalling enableBubble.
\nThe name of the event to fire.
\nVariable number of parameters are passed to handlers.
\nreturns false if any of the handlers return false otherwise it returns true.
\nTry to focus this component.
\nIf applicable, true to also select the text in this component
\nDelay the focus this number of milliseconds (true for 10 milliseconds).
\nthis
\nForces this component to redo its componentLayout.
\nReturns the current animation if this object has any effects actively running or queued, else returns false.
\nAnim if element has active effects, else false
\n\nProvides the link for Observable's fireEvent method to bubble up the ownership hierarchy.
\nthe Container which owns this Component.
\nReturn the immediate child Component in which the passed element is located.
\nThe element to test (or ID of element).
\nThe child item which contains the passed element.
\nReturns the number of grid columns descended from this HeaderContainer.\nGroup Columns are HeaderContainers. All grid columns are returned, including hidden ones.
\nReturns an array of menu CheckItems corresponding to all immediate children of the passed Container which have been configured as hideable.
\nExamines this container's items
property\nand gets a direct child component of this container.
Retrieves the editing field for editing associated with this header. Returns false if there is no field\nassociated with the Header the method will return false. If the field has not been instantiated it will be\ncreated. Note: These methods only has an implementation if a Editing plugin has been enabled on the grid.
\nThe Model instance being edited.
\nAn object representing a default field to be created
\nfield
\nReturns an array of all columns which map to Store fields. This goes down to the lowest column header\nlevel, and does not return grouped headers which contain sub headers.
\nIf omitted, the cached set of columns will be returned. Pass true to refresh the cache.
\nGet a leaf level header by index regardless of what the nesting\nstructure is.
\nGet the index of a leaf level header regardless of what the nesting\nstructure is.
\nRetrieves the id of this component. Will autogenerate an id if one has not already been set.
\nReturns the true grid column index associated with this column only if this column is a base level Column. If it\nis a group column, it returns false
.
This function takes the position argument passed to onRender and returns a DOM element that you can use in the\ninsertBefore.
\nIndex, element id or element you want to put this\ncomponent before.
\nDOM element that you can use in the insertBefore
\nReturns the layout instance currently associated with this Container.\nIf a layout has not been instantiated yet, that is done first
\nThe layout
\nGets the Ext.ComponentLoader for this Component.
\nThe loader instance, null if it doesn't exist.
\nReturns an array of menu items to be placed into the shared menu\nacross all headers in this header container.
\nmenuItems
\nRetrieves a plugin by its pluginId which has been bound to this component.
\nplugin instance.
\nGets the current size of the component's underlying element.
\nAn object containing the element's size {width: (element width), height: (element height)}
\nReturns the parameter to sort upon when sorting this header. By default this returns the dataIndex and will not\nneed to be overriden in most cases.
\nThe supplied default state gathering method for the AbstractComponent class.
\n\nThis method returns dimension settings such as flex
, anchor
, width
and height
along with collapsed
\nstate.
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\nNote that Component state will only be saved if the Component has a stateId and there as a StateProvider\nconfigured for the document.
\nReturns an array of the visible columns in the grid. This goes down to the lowest column header\nlevel, and does not return grouped headers which contain sub headers.
\nIf omitted, the cached set of columns will be returned. Pass true to refresh the cache.
\nGets 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\nvar t = new Ext.form.field.Text();\nalert(t.getXType()); // alerts 'textfield'\n
\nThe xtype
\nReturns this Component's xtype hierarchy as a slash-delimited string. For a list of all available xtypes, see the\nExt.Component header.
\n\nIf using your own subclasses, be aware that a Component must register its own xtype to participate in\ndetermination of inherited xtypes.
\n\nExample usage:
\n\nvar t = new Ext.form.field.Text();\nalert(t.getXTypes()); // alerts 'component/field/textfield'\n
\nThe xtype hierarchy string
\nReturns the current animation if this object has any effects actively running or queued, else returns false.
\nThis method has been deprecated since 4.0
Replaced by getActiveAnimation
\nAnim if element has active effects, else false
\n\nHides this Component, setting it to invisible using the configured hideMode.
\nA callback function to call after the Component is hidden.
\nThe scope (this
reference) in which the callback is executed.\nDefaults to this Component.
this
\nThe 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\nThe initComponent method must contain a call to callParent in order\nto ensure that the parent class' initComponent method is also called.
\n\nThe following example demonstrates using a dynamic string for the text of a button at the time of\ninstantiation of the class.
\n\nExt.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
\nThis is a template method. A hook into the functionality of this class.Feel free to override it in child classes.
Initialize configuration for this class. a typical example:
\n\nExt.define('My.awesome.Class', {\n // The default config\n config: {\n name: 'Awesome',\n isAwesome: true\n },\n\n constructor: function(config) {\n this.initConfig(config);\n\n return this;\n }\n});\n\nvar awesome = new My.awesome.Class({\n name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n
\nmixins The mixin prototypes as key - value pairs
\nInserts a Component into this Container at a specified index. Fires the\nbeforeadd event before inserting, then fires the add event after the\nComponent has been inserted.
\nThe index at which the Component will be inserted\ninto the Container's items collection
\nThe child Component to insert.
\nExt uses lazy rendering, and will only render the inserted Component should\nit become necessary.
\nA Component config object may be passed in order to avoid the overhead of\nconstructing a real Component object if lazy rendering might mean that the\ninserted Component will not be rendered immediately. To take advantage of\nthis 'lazy instantiation', set the Ext.Component.xtype config\nproperty to the registered type of the Component wanted.
\nFor a list of all available xtypes, see Ext.Component.
component The Component (or config object) that was\ninserted with the Container's default config values applied.
\nDetermines whether this component is the descendant of a particular container.
\nTrue if it is.
\nMethod to determine whether this Component is currently disabled.
\nthe disabled state of this Component.
\nMethod to determine whether this Component is draggable.
\nthe draggable state of this component.
\nMethod to determine whether this Component is droppable.
\nthe droppable state of this component.
\nMethod to determine whether this Component is floating.
\nthe floating state of this component.
\nMethod to determine whether this Component is currently set to hidden.
\nthe hidden state of this Component.
\nReturns true if this component is visible.
\nPass true
to interrogate the visibility status of all parent Containers to\ndetermine whether this Component is truly visible to the user.
Generally, to determine whether a Component is hidden, the no argument form is needed. For example when creating\ndynamically laid out UIs in a hidden Container before showing them.
\nDefaults to: false
True if this component is visible, false otherwise.
\nTests 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\nIf using your own subclasses, be aware that a Component must register its own xtype to participate in\ndetermination of inherited xtypes.
\n\nFor a list of all available xtypes, see the Ext.Component header.
\n\nExample usage:
\n\nvar 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
\nThe xtype to check for this Component
\nTrue to check whether this Component is directly of the specified xtype, false to\ncheck whether this Component is descended from the xtype.
\nDefaults to: false
True if this component descends from the specified xtype, false otherwise.
\nShorthand for addManagedListener.
\n\nAdds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is\ndestroyed.
\nThe item to which to add a listener/listeners.
\n\nThe event name, or an object containing event name properties.
\n\nIf the ename
parameter was an event name, this is the handler function.
If the ename
parameter was an event name, this is the scope (this
reference)\nin which the handler function is executed.
If the ename
parameter was an event name, this is the\naddListener options.
Moves a Component within the Container
\nThe index the Component you wish to move is currently at.
\nThe new index for the Component.
\ncomponent The Component (or config object) that was moved.
\nShorthand for removeManagedListener.
\n\nRemoves listeners that were added by the mon method.
\nThe item from which to remove a listener/listeners.
\n\nThe event name, or an object containing event name properties.
\n\nIf the ename
parameter was an event name, this is the handler function.
If the ename
parameter was an event name, this is the scope (this
reference)\nin which the handler function is executed.
Returns the next node in the Component tree in tree traversal order.
\n\nNote 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.
\nA ComponentQuery selector to filter the following nodes.
\nThe next node (or the next node which matches the selector).\nReturns null if there is no matching node.
\nReturns the next sibling of this Component.
\n\nOptionally selects the next sibling which matches the passed ComponentQuery selector.
\n\nMay also be refered to as next()
Note that this is limited to siblings, and if no siblings of the item match, null
is returned. Contrast with\nnextNode
A ComponentQuery selector to filter the following items.
\nThe next sibling (or the next sibling which matches the selector).\nReturns null if there is no matching sibling.
\nShorthand for addListener.
\n\nAppends an event handler to this object.
\nThe name of the event to listen for. May also be an object who's property names are\nevent names.
\n\nThe method the event invokes. Will be called with arguments given to\nfireEvent plus the options
parameter described below.
The scope (this
reference) in which the handler function is executed. If\nomitted, defaults to the object which fired the event.
An object containing handler configuration.
\n\n\n\n\nNote: Unlike in ExtJS 3.x, the options object will also be passed as the last argument to every event handler.
\n\n\n\n\nThis object may contain any of the following properties:
\n\n\n\n\nscope : Object
\n\nThe scope (this
reference) in which the handler function is executed. If omitted, defaults to the object\nwhich fired the event.
delay : Number
\n\nThe number of milliseconds to delay the invocation of the handler after the event fires.
single : Boolean
\n\nTrue to add a handler to handle just the next firing of the event, and then remove itself.
buffer : Number
\n\nCauses the handler to be scheduled to run in an Ext.util.DelayedTask delayed by the specified number of\nmilliseconds. If the event fires again within that time, the original handler is not invoked, but the new\nhandler is scheduled in its place.
target : Observable
\n\nOnly call the handler if the event was fired on the target Observable, not if the event was bubbled up from a\nchild Observable.
element : String
\n\nThis option is only valid for listeners bound to Components. The name of a Component\nproperty which references an element to add a listener to.
\n\nThis option is useful during Component construction to add DOM event listeners to elements of\nComponents which will exist only after the Component is rendered.\nFor example, to add a click listener to a Panel's body:
\n\nnew Ext.panel.Panel({\n title: 'The title',\n listeners: {\n click: this.handlePanelClick,\n element: 'body'\n }\n});\n
Combining Options
\n\n\n\n\nUsing the options argument, it is possible to combine different types of listeners:
\n\n\n\n\nA delayed, one-time listener.
\n\n\n\n\nmyPanel.on('hide', this.handleClick, this, {\n single: true,\n delay: 100\n});\n
\n\n\n\n\nAttaching multiple handlers in 1 call
\n\n\n\n\nThe method also allows for a single argument to be passed which is a config object containing properties which\nspecify multiple events. For example:
\n\n\n\n\nmyGridPanel.on({\n cellClick: this.onCellClick,\n mouseover: this.onMouseOver,\n mouseout: this.onMouseOut,\n scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n
\n\n\n\n\nOne can also specify options for each event handler separately:
\n\n\n\n\nmyGridPanel.on({\n cellClick: {fn: this.onCellClick, scope: this, single: true},\n mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
\n\nReturns the previous node in the Component tree in tree traversal order.
\n\nNote 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.
\nA ComponentQuery selector to filter the preceding nodes.
\nThe previous node (or the previous node which matches the selector).\nReturns null if there is no matching node.
\nReturns the previous sibling of this Component.
\n\nOptionally selects the previous sibling which matches the passed ComponentQuery\nselector.
\n\nMay also be refered to as prev()
Note that this is limited to siblings, and if no siblings of the item match, null
is returned. Contrast with\npreviousNode
A ComponentQuery selector to filter the preceding items.
\nThe previous sibling (or the previous sibling which matches the selector).\nReturns null if there is no matching sibling.
\nRetrieves all descendant components which match the passed selector.\nExecutes an Ext.ComponentQuery.query using this container as its root.
\nSelector complying to an Ext.ComponentQuery selector.\nIf no selector is specified all items will be returned.
\nComponents which matched the selector
\nRemoves a component from this container. Fires the beforeremove event before removing, then fires\nthe remove event after the component has been removed.
\nThe component reference or id to remove.
\nTrue to automatically invoke the removed Component's Ext.Component.destroy function.\nDefaults to the value of this Container's autoDestroy config.
\ncomponent The Component that was removed.
\nRemoves all components from this container.
\nTrue to automatically invoke the removed Component's Ext.Component.destroy function.\nDefaults to the value of this Container's autoDestroy config.
\nArray of the destroyed components
\nRemoves items in the childEls array based on the return value of a supplied test function. The function is called\nwith a entry in childEls and if the test function return true, that entry is removed. If false, that entry is\nkept.
\nThe test function.
\nRemoves a CSS class from the top level element representing this component.
\nReturns the Component to allow method chaining.
\nRemoves a cls to the uiCls array, which will also call removeUIClsFromElement and removes it from all\nelements of this component.
\nRemoves an event handler.
\nThe type of event the handler was associated with.
\n\nThe handler to remove. This must be a reference to the function passed into the\naddListener call.
\n\nThe 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\nRemoves listeners that were added by the mon method.
\nThe item from which to remove a listener/listeners.
\n\nThe event name, or an object containing event name properties.
\n\nIf the ename
parameter was an event name, this is the handler function.
If the ename
parameter was an event name, this is the scope (this
reference)\nin which the handler function is executed.
Method which removes a specified UI + uiCls from the components element. The cls which is added to the element\nwill be: this.baseCls + '-' + ui
The UI to add to the element
\nResumes firing events (see suspendEvents).
\n\nIf events were suspended using the queueSuspended
parameter, then all events fired\nduring event suspension will be sent to any listeners now.
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.
\nThe name of the property to save.
\nThe state object in to which to save the property.
\nThe name to use for the property in state.
\nTrue if the property was saved, false if not.
\nThis 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\nIf a Window is superceded by another Window, deactivating it hides its shadow.
\n\nThis method also fires the activate or\ndeactivate event depending on which action occurred.
\nTrue to activate the Component, false to deactivate it.
\nDefaults to: false
The newly active Component which is taking over topmost zIndex position.
\nSets the overflow on the content element of the component.
\nTrue to allow the Component to auto scroll.
\nthis
\nSets 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)
\nThe dock position.
\nTrue to re-layout parent.
\nDefaults to: false
this
\nSets the form field to be used for editing. Note: This method only has an implementation if an Editing plugin has\nbeen enabled on the grid.
\nAn object representing a field to be created. If no xtype is specified a 'textfield' is\nassumed.
\nSets the height of the component. This method fires the resize event.
\nThe new height to set. This may be one of:
\n\nthis
\nThis method allows you to show or hide a LoadMask on top of this component.
\nTrue 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.
\nTrue 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.
Defaults to: false
The LoadMask instance that has just been shown.
\nSets the page XY position of the component. To set the left and top instead, use setPosition.\nThis method fires the move event.
\nThe new x position
\nThe new y position
\nTrue to animate the Component into its new position. You may also pass an\nanimation configuration.
\nthis
\nSets the left and top of the component. To set the page XY position instead, use setPagePosition. This\nmethod fires the move event.
\nThe new left
\nThe new top
\nIf true, the Component is animated into its new position. You may also pass an\nanimation configuration.
\nthis
\nSets 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}
.
The new width to set. This may be one of:
\n\n{width: widthValue, height: heightValue}
.undefined
to leave the width unchanged.The new height to set (not required if a size object is passed as the first arg).\nThis may be one of:
\n\nundefined
to leave the height unchanged.this
\nSets the header text for this Column.
\nThe header to display on this Column.
\nSets 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
\nThe new UI for the component
\nConvenience function to hide or show this component by boolean.
\nTrue to show, false to hide
\nthis
\nShows this Component, rendering it first if autoRender or floating are true
.
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.
\nA callback function to call after the Component is displayed.\nOnly necessary if animation was specified.
\nThe scope (this
reference) in which the callback is executed.\nDefaults to this Component.
this
\nDisplays 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\nlisteners: {\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
\nGet 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
Ext.define('My.Cat', {\n statics: {\n totalCreated: 0,\n speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n },\n\n constructor: function() {\n var statics = this.statics();\n\n alert(statics.speciesName); // always equals to 'Cat' no matter what 'this' refers to\n // equivalent to: My.Cat.speciesName\n\n alert(this.self.speciesName); // dependent on 'this'\n\n statics.totalCreated++;\n\n return this;\n },\n\n clone: function() {\n var cloned = new this.self; // dependent on 'this'\n\n cloned.groupName = this.statics().speciesName; // equivalent to: My.Cat.speciesName\n\n return cloned;\n }\n});\n\n\nExt.define('My.SnowLeopard', {\n extend: 'My.Cat',\n\n statics: {\n speciesName: 'Snow Leopard' // My.SnowLeopard.speciesName = 'Snow Leopard'\n },\n\n constructor: function() {\n this.callParent();\n }\n});\n\nvar cat = new My.Cat(); // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone)); // alerts 'My.SnowLeopard'\nalert(clone.groupName); // alerts 'Cat'\n\nalert(My.Cat.totalCreated); // alerts 3\n
\nStops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.
\nThe Element
\nStops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.
\nThis method has been deprecated since 4.0
Replaced by stopAnimation
\nThe Element
\nSuspends the firing of all events. (see resumeEvents)
\nPass as true to queue up suspended events to be fired\nafter the resumeEvents call instead of discarding all suspended events.
\nEnsures that all effects queued after syncFx is called on this object are\nrun concurrently. This is the opposite of sequenceFx.
\nthis
\nSends this Component to the back of (lower z-index than) any other visible windows
\nthis
\nBrings this floating Component to the front of any other visible, floating Components managed by the same ZIndexManager
\n\nIf this Component is modal, inserts the modal mask just below this Component in the z-index stack.
\nSpecify true
to prevent the Component from being focused.
Defaults to: false
this
\nShorthand for removeListener.
\n\nRemoves an event handler.
\nThe type of event the handler was associated with.
\n\nThe handler to remove. This must be a reference to the function passed into the\naddListener call.
\n\nThe 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\nWalks up the ownerCt
axis looking for an ancestor Container which matches the passed simple selector.
Example:
\n\nvar owningTabPanel = grid.up('tabpanel');\n
\nThe simple selector to test.
\nThe matching ancestor Container (or undefined
if no match was found).
Update the content area of a component.
\nIf 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
\nOnly legitimate when using the html configuration.
\nDefaults to: false
Only legitimate when using the html configuration. Callback to execute when\nscripts have finished loading
\nSets the current box measurements of the component's underlying element.
\nAn object in the format {x, y, width, height}
\nthis
\nAdd / override static properties of this class.
\n\nExt.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
\nthis
\nBorrow another class' members to the prototype of this class.
\n\nExt.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
\nThe class to borrow members from
\nThe names of the members to borrow
\nthis
\nCreate a new instance of this Class.
\n\nExt.define('My.cool.Class', {\n ...\n});\n\nMy.cool.Class.create({\n someConfig: true\n});\n
\n\nAll parameters are passed to the constructor of the class.
\nthe created instance.
\nCreate aliases for existing prototype methods. Example:
\n\nExt.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
\nThe new method name, or an object to set multiple aliases. See\nflexSetter
\nThe original method name
\nGet the current class' name in string format.
\n\nExt.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
\nclassName
\nAdd methods / properties to the prototype of this class.
\n\nExt.define('My.awesome.Cat', {\n constructor: function() {\n ...\n }\n});\n\n My.awesome.Cat.implement({\n meow: function() {\n alert('Meowww...');\n }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n
\nOverride prototype members of this class. Overridden methods can be invoked via\ncallOverridden
\n\nExt.define('My.Cat', {\n constructor: function() {\n alert(\"I'm a cat!\");\n\n return this;\n }\n});\n\nMy.Cat.override({\n constructor: function() {\n alert(\"I'm going to be a cat!\");\n\n var instance = this.callOverridden();\n\n alert(\"Meeeeoooowwww\");\n\n return instance;\n }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n // alerts \"I'm a cat!\"\n // alerts \"Meeeeoooowwww\"\n
\nthis
\nFires after a Component has been visually activated.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\n@bubbles\nFires after any Ext.Component is added or inserted into the container.
\nThe component that was added
\nThe index at which the component was added to the container's items collection
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after a Component had been added to a Container.
\nParent Container
\nposition of Component
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires when the components in this container are arranged by the associated layout manager.
\nThe ContainerLayout implementation for this container
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the component rendering is finished.
\n\nThe afterrender event is fired after this Component has been rendered, been postprocesed by any\nafterRender method defined for the Component.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires before a Component has been visually activated. Returning false from an event listener can prevent\nthe activate from occurring.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires before any Ext.Component is added or inserted into the container.\nA handler can return false to cancel the add.
\nThe component being added
\nThe index at which the component will be added to the container's items collection
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires before a Component has been visually deactivated. Returning false from an event listener can\nprevent the deactivate from occurring.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires before the component is destroyed. Return false from an event handler to stop the\ndestroy.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires before the component is hidden when calling the hide method. Return false from an event\nhandler to stop the hide.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires before any Ext.Component is removed from the container. A handler can return\nfalse to cancel the remove.
\nThe component being removed
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires before the component is rendered. Return false from an event handler to stop the\nrender.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires before the component is shown when calling the show method. Return false from an event\nhandler to stop the show.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires before the state of the object is restored. Return false from an event handler to stop the restore.
\nThe 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.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires before the state of the object is saved to the configured state provider. Return false to stop the save.
\nThe hash of state values. This is determined by calling\ngetState() on the object. This method must be provided by the\ndeveloper to return whetever representation of state is required, by default, Ext.state.Stateful\nhas a null implementation.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nThe grid's header Container which encapsulates all column headers.
\nThe Column header Component which provides the column definition
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nThe grid's header Container which encapsulates all column headers.
\nThe Column header Component which provides the column definition
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nThe grid's header Container which encapsulates all column headers.
\nThe Column header Component which provides the column definition
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nThe grid's header Container which encapsulates all column headers.
\nThe Column header Component which provides the column definition
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after a Component has been visually deactivated.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the component is destroyed.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the component is disabled.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the component is enabled.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nThe grid's header Container which encapsulates all column headers.
\nThe Column header Component which provides the column definition
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nThe grid's header Container which encapsulates all column headers.
\nThe Column header Component which provides the column definition
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the component is hidden. Fires after the component is hidden when calling the hide\nmethod.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the component is moved.
\nThe new x position
\nThe new y position
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\n@bubbles\nFires after any Ext.Component is removed from the container.
\nThe component that was removed
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires when a component is removed from an Ext.container.Container
\nContainer which holds the component
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the component markup is rendered.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the component is resized.
\nThe box-adjusted width that was set
\nThe box-adjusted height that was set
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the component is shown when calling the show method.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nThe grid's header Container which encapsulates all column headers.
\nThe Column header Component which provides the column definition
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the state of the object is restored.
\nThe 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.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nFires after the state of the object is saved to the configured state provider.
\nThe hash of state values. This is determined by calling\ngetState() on the object. This method must be provided by the\ndeveloper to return whetever representation of state is required, by default, Ext.state.Stateful\nhas a null implementation.
\nThe options object passed to Ext.util.Observable.addListener.
\n\n\n\nUse editor instead.
\n","version":"4.0.5"},"static":false,"owner":"Ext.grid.column.Column","template":null,"required":false,"protected":false,"name":"field","id":"cfg-field"},{"tagname":"cfg","deprecated":{"doc":"True to prevent the column from being resizable.","tagname":"deprecated","text":"\n","version":"."},"static":false,"owner":"Ext.grid.column.Column","template":null,"required":false,"protected":false,"name":"fixed","id":"cfg-fixed"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"floating","id":"cfg-floating"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":null,"required":false,"protected":false,"name":"focusOnToFront","id":"cfg-focusOnToFront"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"frame","id":"cfg-frame"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":null,"required":false,"protected":false,"name":"groupable","id":"cfg-groupable"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"height","id":"cfg-height"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"hidden","id":"cfg-hidden"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"hideMode","id":"cfg-hideMode"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":null,"required":false,"protected":false,"name":"hideable","id":"cfg-hideable"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"html","id":"cfg-html"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"id","id":"cfg-id"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"itemId","id":"cfg-itemId"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":false,"protected":false,"name":"items","id":"cfg-items"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":false,"protected":false,"name":"layout","id":"cfg-layout"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":null,"required":false,"protected":false,"name":"listeners","id":"cfg-listeners"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"loader","id":"cfg-loader"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"maintainFlex","id":"cfg-maintainFlex"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"margin","id":"cfg-margin"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"maxHeight","id":"cfg-maxHeight"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"maxWidth","id":"cfg-maxWidth"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":null,"required":false,"protected":false,"name":"menuDisabled","id":"cfg-menuDisabled"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"minHeight","id":"cfg-minHeight"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"minWidth","id":"cfg-minWidth"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"overCls","id":"cfg-overCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"padding","id":"cfg-padding"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"plugins","id":"cfg-plugins"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"renderData","id":"cfg-renderData"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"renderSelectors","id":"cfg-renderSelectors"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"renderTo","id":"cfg-renderTo"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"renderTpl","id":"cfg-renderTpl"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":null,"required":false,"protected":false,"name":"renderer","id":"cfg-renderer"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":null,"required":false,"protected":false,"name":"resizable","id":"cfg-resizable"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"resizeHandles","id":"cfg-resizeHandles"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":false,"protected":false,"name":"saveDelay","id":"cfg-saveDelay"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":null,"required":false,"protected":false,"name":"shadow","id":"cfg-shadow"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":null,"required":false,"protected":false,"name":"sortable","id":"cfg-sortable"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":false,"protected":false,"name":"stateEvents","id":"cfg-stateEvents"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":false,"protected":false,"name":"stateId","id":"cfg-stateId"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":false,"protected":false,"name":"stateful","id":"cfg-stateful"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"style","id":"cfg-style"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"styleHtmlCls","id":"cfg-styleHtmlCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"styleHtmlContent","id":"cfg-styleHtmlContent"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":false,"protected":false,"name":"suspendLayout","id":"cfg-suspendLayout"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":null,"required":false,"protected":false,"name":"tdCls","id":"cfg-tdCls"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":null,"required":false,"protected":false,"name":"text","id":"cfg-text"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.Component","template":null,"required":false,"protected":false,"name":"toFrontOnShow","id":"cfg-toFrontOnShow"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"tpl","id":"cfg-tpl"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"tplWriteMode","id":"cfg-tplWriteMode"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"ui","id":"cfg-ui"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":null,"required":false,"protected":false,"name":"weight","id":"cfg-weight"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"width","id":"cfg-width"},{"tagname":"cfg","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":false,"protected":false,"name":"xtype","id":"cfg-xtype"}],"method":[{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"constructor","id":"method-constructor"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"add","id":"method-add"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"addChildEls","id":"method-addChildEls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"addClass","id":"method-addClass"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"addCls","id":"method-addCls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"addClsWithUI","id":"method-addClsWithUI"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"addEvents","id":"method-addEvents"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"addListener","id":"method-addListener"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"addManagedListener","id":"method-addManagedListener"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":false,"required":null,"protected":false,"name":"addStateEvents","id":"method-addStateEvents"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"addUIClsToElement","id":"method-addUIClsToElement"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"afterComponentLayout","id":"method-afterComponentLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"alignTo","id":"method-alignTo"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"animate","id":"method-animate"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":false,"required":null,"protected":false,"name":"applyState","id":"method-applyState"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"beforeComponentLayout","id":"method-beforeComponentLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"beforeLayout","id":"method-beforeLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"bubble","id":"method-bubble"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"callOverridden","id":"method-callOverridden"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"callParent","id":"method-callParent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"cascade","id":"method-cascade"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"center","id":"method-center"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"child","id":"method-child"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"clearListeners","id":"method-clearListeners"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"clearManagedListeners","id":"method-clearManagedListeners"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"cloneConfig","id":"method-cloneConfig"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"constructPlugins","id":"method-constructPlugins"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"destroy","id":"method-destroy"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"disable","id":"method-disable"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"doAutoRender","id":"method-doAutoRender"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"doComponentLayout","id":"method-doComponentLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"doConstrain","id":"method-doConstrain"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"doLayout","id":"method-doLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"down","id":"method-down"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"enable","id":"method-enable"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"enableBubble","id":"method-enableBubble"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"findLayoutController","id":"method-findLayoutController"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"findParentBy","id":"method-findParentBy"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"findParentByType","id":"method-findParentByType"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"fireEvent","id":"method-fireEvent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"focus","id":"method-focus"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"forceComponentLayout","id":"method-forceComponentLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"getActiveAnimation","id":"method-getActiveAnimation"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"getBox","id":"method-getBox"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getBubbleTarget","id":"method-getBubbleTarget"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.Container","template":false,"required":null,"protected":false,"name":"getChildByElement","id":"method-getChildByElement"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":false,"required":null,"protected":false,"name":"getColumnCount","id":"method-getColumnCount"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":false,"required":null,"protected":false,"name":"getColumnMenu","id":"method-getColumnMenu"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"getComponent","id":"method-getComponent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":false,"required":null,"protected":false,"name":"getEditor","id":"method-getEditor"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getEl","id":"method-getEl"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":false,"required":null,"protected":false,"name":"getFullWidth","id":"method-getFullWidth"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":false,"required":null,"protected":false,"name":"getGridColumns","id":"method-getGridColumns"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":false,"required":null,"protected":false,"name":"getHeaderAtIndex","id":"method-getHeaderAtIndex"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":false,"required":null,"protected":false,"name":"getHeaderIndex","id":"method-getHeaderIndex"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getHeight","id":"method-getHeight"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getId","id":"method-getId"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":false,"required":null,"protected":false,"name":"getIndex","id":"method-getIndex"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getInsertPosition","id":"method-getInsertPosition"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"getLayout","id":"method-getLayout"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getLoader","id":"method-getLoader"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":false,"required":null,"protected":false,"name":"getMenuItems","id":"method-getMenuItems"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getPlugin","id":"method-getPlugin"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"getPosition","id":"method-getPosition"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getSize","id":"method-getSize"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":false,"required":null,"protected":false,"name":"getSortParam","id":"method-getSortParam"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getState","id":"method-getState"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":false,"required":null,"protected":false,"name":"getStateId","id":"method-getStateId"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":false,"required":null,"protected":false,"name":"getVisibleGridColumns","id":"method-getVisibleGridColumns"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getWidth","id":"method-getWidth"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"getXType","id":"method-getXType"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"getXTypes","id":"method-getXTypes"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"Replaced by getActiveAnimation
\n","version":"4.0"},"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"hasActiveFx","id":"method-hasActiveFx"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"hasListener","id":"method-hasListener"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"hasUICls","id":"method-hasUICls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"hide","id":"method-hide"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":true,"required":null,"protected":false,"name":"initComponent","id":"method-initComponent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"initConfig","id":"method-initConfig"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"insert","id":"method-insert"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"is","id":"method-is"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isDescendantOf","id":"method-isDescendantOf"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isDisabled","id":"method-isDisabled"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isDraggable","id":"method-isDraggable"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isDroppable","id":"method-isDroppable"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isFloating","id":"method-isFloating"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isHidden","id":"method-isHidden"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isVisible","id":"method-isVisible"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"isXType","id":"method-isXType"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"mon","id":"method-mon"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"move","id":"method-move"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"mun","id":"method-mun"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"nextNode","id":"method-nextNode"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"nextSibling","id":"method-nextSibling"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"on","id":"method-on"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":false,"required":null,"protected":false,"name":"prepareData","id":"method-prepareData"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"previousNode","id":"method-previousNode"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"previousSibling","id":"method-previousSibling"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"query","id":"method-query"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"relayEvents","id":"method-relayEvents"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"remove","id":"method-remove"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":false,"required":null,"protected":false,"name":"removeAll","id":"method-removeAll"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"removeChildEls","id":"method-removeChildEls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"removeCls","id":"method-removeCls"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"removeClsWithUI","id":"method-removeClsWithUI"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"removeListener","id":"method-removeListener"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"removeManagedListener","id":"method-removeManagedListener"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"removeUIClsFromElement","id":"method-removeUIClsFromElement"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"resumeEvents","id":"method-resumeEvents"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":false,"required":null,"protected":false,"name":"savePropToState","id":"method-savePropToState"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"sequenceFx","id":"method-sequenceFx"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"setActive","id":"method-setActive"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"setAutoScroll","id":"method-setAutoScroll"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setDisabled","id":"method-setDisabled"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setDocked","id":"method-setDocked"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":false,"required":null,"protected":false,"name":"setEditor","id":"method-setEditor"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setHeight","id":"method-setHeight"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setLoading","id":"method-setLoading"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"setPagePosition","id":"method-setPagePosition"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"setPosition","id":"method-setPosition"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setSize","id":"method-setSize"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":false,"required":null,"protected":false,"name":"setText","id":"method-setText"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setUI","id":"method-setUI"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"setVisible","id":"method-setVisible"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.grid.column.Column","template":false,"required":null,"protected":false,"name":"setWidth","id":"method-setWidth"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"show","id":"method-show"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"showAt","id":"method-showAt"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"statics","id":"method-statics"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"stopAnimation","id":"method-stopAnimation"},{"tagname":"method","deprecated":{"doc":"Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.","tagname":"deprecated","text":"Replaced by stopAnimation
\n","version":"4.0"},"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"stopFx","id":"method-stopFx"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"suspendEvents","id":"method-suspendEvents"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Animate","template":false,"required":null,"protected":false,"name":"syncFx","id":"method-syncFx"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"toBack","id":"method-toBack"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Floating","template":false,"required":null,"protected":false,"name":"toFront","id":"method-toFront"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.util.Observable","template":false,"required":null,"protected":false,"name":"un","id":"method-un"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"up","id":"method-up"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":false,"required":null,"protected":false,"name":"update","id":"method-update"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Component","template":false,"required":null,"protected":false,"name":"updateBox","id":"method-updateBox"}],"event":[{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"activate","id":"event-activate"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"add","id":"event-add"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"added","id":"event-added"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"afterlayout","id":"event-afterlayout"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"afterrender","id":"event-afterrender"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforeactivate","id":"event-beforeactivate"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"beforeadd","id":"event-beforeadd"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforedeactivate","id":"event-beforedeactivate"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforedestroy","id":"event-beforedestroy"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforehide","id":"event-beforehide"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"beforeremove","id":"event-beforeremove"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforerender","id":"event-beforerender"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"beforeshow","id":"event-beforeshow"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":null,"protected":false,"name":"beforestaterestore","id":"event-beforestaterestore"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":null,"protected":false,"name":"beforestatesave","id":"event-beforestatesave"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":null,"required":null,"protected":false,"name":"columnhide","id":"event-columnhide"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":null,"required":null,"protected":false,"name":"columnmove","id":"event-columnmove"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":null,"required":null,"protected":false,"name":"columnresize","id":"event-columnresize"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":null,"required":null,"protected":false,"name":"columnshow","id":"event-columnshow"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"deactivate","id":"event-deactivate"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"destroy","id":"event-destroy"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"disable","id":"event-disable"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"enable","id":"event-enable"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":null,"required":null,"protected":false,"name":"headerclick","id":"event-headerclick"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":null,"required":null,"protected":false,"name":"headertriggerclick","id":"event-headertriggerclick"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"hide","id":"event-hide"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":null,"required":null,"protected":false,"name":"menucreate","id":"event-menucreate"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"move","id":"event-move"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.container.AbstractContainer","template":null,"required":null,"protected":false,"name":"remove","id":"event-remove"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"removed","id":"event-removed"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"render","id":"event-render"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"resize","id":"event-resize"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.AbstractComponent","template":null,"required":null,"protected":false,"name":"show","id":"event-show"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.grid.header.Container","template":null,"required":null,"protected":false,"name":"sortchange","id":"event-sortchange"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":null,"protected":false,"name":"staterestore","id":"event-staterestore"},{"tagname":"event","deprecated":null,"static":false,"owner":"Ext.state.Stateful","template":null,"required":null,"protected":false,"name":"statesave","id":"event-statesave"}]},"private":false,"component":true,"name":"Ext.grid.column.Column","alternateClassNames":["Ext.grid.Column"],"id":"class-Ext.grid.column.Column","mixedInto":[],"xtypes":{"widget":["gridcolumn"]},"files":[{"href":"Column.html#Ext-grid-column-Column","filename":"Column.js"}]}); \ No newline at end of file