X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/output/Ext.grid.property.Grid.js diff --git a/docs/output/Ext.grid.property.Grid.js b/docs/output/Ext.grid.property.Grid.js index 9262cbb1..d94cd79e 100644 --- a/docs/output/Ext.grid.property.Grid.js +++ b/docs/output/Ext.grid.property.Grid.js @@ -1,7120 +1,9534 @@ Ext.data.JsonP.Ext_grid_property_Grid({ - "tagname": "class", - "name": "Ext.grid.property.Grid", - "doc": "

A specialized grid implementation intended to mimic the traditional property grid as typically seen in\ndevelopment IDEs. Each row in the grid represents a property of some object, and the data is stored\nas a set of name/value pairs in Properties. Example usage:

\n\n
var grid = new Ext.grid.property.Grid({\n    title: 'Properties Grid',\n    width: 300,\n    renderTo: 'grid-ct',\n    source: {\n        \"(name)\": \"My Object\",\n        \"Created\": Ext.Date.parse('10/15/2006', 'm/d/Y'),\n        \"Available\": false,\n        \"Version\": .01,\n        \"Description\": \"A test object\"\n    }\n});\n
\n\n", - "extends": "Ext.grid.Panel", - "mixins": [ - - ], - "alternateClassNames": [ - "Ext.grid.PropertyGrid" + "allMixins": [ + "Ext.util.Floating", + "Ext.util.Observable", + "Ext.util.Animate", + "Ext.state.Stateful" ], - "xtype": "propertygrid", - "author": null, + "deprecated": null, "docauthor": null, - "singleton": false, - "private": false, - "cfg": [ - { - "tagname": "cfg", - "name": "activeItem", - "member": "Ext.container.AbstractContainer", - "type": "String/Number", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 87, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.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..." - }, - { - "tagname": "cfg", - "name": "animCollapse", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 111, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-animCollapse", - "shortDoc": "true to animate the transition when the panel is collapsed, false to skip the\nanimation (defaults to true if the Ext...." - }, - { - "tagname": "cfg", - "name": "autoDestroy", - "member": "Ext.container.AbstractContainer", - "type": "Boolean", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 161, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.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..." - }, - { - "tagname": "cfg", - "name": "autoEl", - "member": "Ext.AbstractComponent", - "type": "Mixed", - "doc": "

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

\n\n\n

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

This 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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 109, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoEl", - "shortDoc": "A tag name or DomHelper spec used to create the Element which will\nencapsulate this Component.\n\n\nYou do not normally ..." - }, - { - "tagname": "cfg", - "name": "autoRender", - "member": "Ext.AbstractComponent", - "type": "Mixed", - "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\n

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

\n\n\n

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

\n\n\n

This defaults to true for the Window class.

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 478, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoRender", - "shortDoc": "This config is intended mainly for floating Components which may or may not be shown. Instead\nof using renderTo in th..." - }, - { - "tagname": "cfg", - "name": "autoScroll", - "member": "Ext.Component", - "type": "Boolean", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 169, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-cfg-autoScroll", - "shortDoc": "true to use overflow:'auto' on the components layout element and show scroll bars automatically when\nnecessary, false..." - }, - { - "tagname": "cfg", - "name": "autoShow", - "member": "Ext.AbstractComponent", - "type": "Boolean", - "doc": "

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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 471, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoShow", - "shortDoc": "True to automatically show the component upon creation.\nThis config option may only be used for floating components o..." - }, - { - "tagname": "cfg", - "name": "baseCls", - "member": "Ext.panel.AbstractPanel", - "type": "String", - "doc": "

The base CSS class to apply to this panel's element (defaults to 'x-panel').

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 19, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-baseCls" - }, - { - "tagname": "cfg", - "name": "bbar", - "member": "Ext.panel.Panel", - "type": "Object/Array", - "doc": "

Convenience method. Short for 'Bottom Bar'.

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

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'bottom',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 483, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-bbar", - "shortDoc": "Convenience method. Short for 'Bottom Bar'.\n\nbbar: [\n { xtype: 'button', text: 'Button 1' }\n]\n\n\nis equivalent to\n\ndo..." - }, - { - "tagname": "cfg", - "name": "bodyBorder", - "member": "Ext.panel.AbstractPanel", - "type": "Boolean", - "doc": "

A shortcut to add or remove the border on the body of a panel. This only applies to a panel which has the frame configuration set to true.\nDefaults to undefined.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 32, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyBorder", - "shortDoc": "A shortcut to add or remove the border on the body of a panel. This only applies to a panel which has the frame confi..." - }, - { - "tagname": "cfg", - "name": "bodyCls", - "member": "Ext.panel.AbstractPanel", - "type": "String/Array", - "doc": "

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

\n\n
bodyCls: 'foo'\nbodyCls: 'foo bar'\nbodyCls: ['foo', 'bar']\n
\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 52, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyCls", - "shortDoc": "A CSS class, space-delimited string of classes, or array of classes to be applied to the panel's body element.\nThe fo..." - }, - { - "tagname": "cfg", - "name": "bodyPadding", - "member": "Ext.panel.AbstractPanel", - "type": "Number/String", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 25, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyPadding", - "shortDoc": "A shortcut for setting a padding style on the body element. The value can either be\na number to be applied to all sid..." - }, - { - "tagname": "cfg", - "name": "bodyStyle", - "member": "Ext.panel.AbstractPanel", - "type": "String/Object/Function", - "doc": "

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

\n\n
bodyStyle: 'background:#ffc; padding:10px;'\n\nbodyStyle: {\n    background: '#ffc',\n    padding: '10px'\n}\n
\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 38, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyStyle", - "shortDoc": "Custom CSS styles to be applied to the panel's body element, which can be supplied as a valid CSS style string,\nan ob..." - }, - { - "tagname": "cfg", - "name": "border", - "member": "Ext.AbstractComponent", - "type": "Number/String", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 339, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-border", - "shortDoc": "Specifies the border for this component. The border can be a single numeric value to apply to all sides or\nit can be ..." - }, - { - "tagname": "cfg", - "name": "bubbleEvents", - "member": "Ext.container.AbstractContainer", - "type": "Array", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 179, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-bubbleEvents", - "shortDoc": "An array of events that, when fired, should be bubbled to any parent container.\nSee Ext.util.Observable.enableBubble...." - }, - { - "tagname": "cfg", - "name": "buttons", - "member": "Ext.panel.Panel", - "type": "Object/Array", - "doc": "

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

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

is equivalent to

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

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 509, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-buttons", - "shortDoc": "Convenience method used for adding buttons docked to the bottom right of the panel. This is a\nsynonym for the fbar co..." - }, - { - "tagname": "cfg", - "name": "closable", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

True to display the 'close' tool button and allow the user to close the window, false to\nhide the button and disallow closing the window (defaults to false).

\n\n\n

By default, when close is requested by clicking the close button in the header, the close\nmethod will be called. This will destroy the Panel and its content\nmeaning that it may not be reused.

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 211, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-closable", - "shortDoc": "True to display the 'close' tool button and allow the user to close the window, false to\nhide the button and disallow..." - }, - { - "tagname": "cfg", - "name": "closeAction", - "member": "Ext.panel.Panel", - "type": "String", - "doc": "

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

\n

Note: This behavior has changed! setting *does* affect the close method\nwhich will invoke the approriate closeAction.\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 223, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-closeAction", - "shortDoc": "The action to take when the close header tool is clicked:\n\n'destroy' : Default\nremove the window from the DOM and des..." - }, - { - "tagname": "cfg", - "name": "cls", - "member": "Ext.AbstractComponent", - "type": "String", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 268, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-cls", - "shortDoc": "An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be\nuseful for ..." - }, - { - "tagname": "cfg", - "name": "collapseDirection", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

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

\n\n\n

Defaults to the headerPosition

\n\n\n

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

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 203, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-collapseDirection", - "shortDoc": "The direction to collapse the Panel when the toggle button is clicked.\n\n\nDefaults to the headerPosition\n\n\nImportant: ..." - }, - { - "tagname": "cfg", - "name": "collapseFirst", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 136, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-collapseFirst", - "shortDoc": "true to make sure the collapse/expand toggle button always renders first (to the left of)\nany other tools in the pane..." - }, - { - "tagname": "cfg", - "name": "collapseMode", - "member": "Ext.panel.Panel", - "type": "String", - "doc": "

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

\n\n\n

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

\n\n\n

When a child item of a border layout, this config has two options:\n

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 158, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-collapseMode", - "shortDoc": "Important: this config is only effective for collapsible Panels which are direct child items of a border layout.\n\n\nWh..." - }, - { - "tagname": "cfg", - "name": "collapsed", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

true to render the panel collapsed, false to render it expanded (defaults to\nfalse).

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 129, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-collapsed" - }, - { - "tagname": "cfg", - "name": "collapsedCls", - "member": "Ext.panel.Panel", - "type": "String", - "doc": "

A CSS class to add to the panel's element after it has been collapsed (defaults to\n'collapsed').

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 104, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-collapsedCls" - }, - { - "tagname": "cfg", - "name": "collapsible", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

True to make the panel collapsible and have an expand/collapse toggle Tool added into\nthe header tool button area. False to keep the panel sized either statically, or by an owning layout manager, with no toggle Tool (defaults to false).

\n\n\n

See collapseMode and collapseDirection

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 195, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-collapsible", - "shortDoc": "True to make the panel collapsible and have an expand/collapse toggle Tool added into\nthe header tool button area. Fa..." - }, - { - "tagname": "cfg", - "name": "columnLines", - "member": "Ext.grid.Panel", - "type": "Boolean", - "doc": "

Adds column line styling

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/Panel.js", - "linenr": 346, - "html_filename": "Panel2.html", - "href": "Panel2.html#Ext-grid-Panel-cfg-columnLines" - }, - { - "tagname": "cfg", - "name": "columns", - "member": "Ext.panel.Table", - "type": "Array", - "doc": "

An array of column definition objects which define all columns that appear in this grid. Each\ncolumn definition provides the header text for the column, and a definition of where the data for that column comes from.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 58, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-cfg-columns", - "shortDoc": "An array of column definition objects which define all columns that appear in this grid. Each\ncolumn definition provi..." - }, - { - "tagname": "cfg", - "name": "componentCls", - "member": "Ext.AbstractComponent", - "type": "String", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 262, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-componentCls" - }, - { - "tagname": "cfg", - "name": "componentLayout", - "member": "Ext.AbstractComponent", - "type": "String/Object", - "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\n

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

\n\n\n

The 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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 221, - "html_filename": "AbstractComponent.html", - "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..." - }, - { - "tagname": "cfg", - "name": "contentEl", - "member": "Ext.AbstractComponent", - "type": "String", - "doc": "

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

\n\n\n\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 401, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-contentEl", - "shortDoc": "Optional. Specify an existing HTML element, or the id of an existing HTML element to use as the content\nfor this comp..." - }, - { - "tagname": "cfg", - "name": "customEditors", - "member": "Ext.grid.property.Grid", - "type": "Object", - "doc": "

An object containing name/value pairs of custom editor type definitions that allow\nthe grid to support additional types of editable fields. By default, the grid supports strongly-typed editing\nof strings, dates, numbers and booleans using built-in form editors, but any custom type can be supported and\nassociated with a custom input control by specifying a custom editor. The name of the editor\ntype should correspond with the name of the property that will use the editor. Example usage:

\n\n
var grid = new Ext.grid.property.Grid({\n\n    // Custom editors for certain property names\n    customEditors: {\n        evtStart: Ext.create('Ext.form.TimeField' {selectOnFocus:true})\n    },\n\n    // Displayed name for property names in the source\n    propertyNames: {\n        evtStart: 'Start Time'\n    },\n\n    // Data object containing properties to edit\n    source: {\n        evtStart: '10:00 AM'\n    }\n});\n
\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 53, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-cfg-customEditors", - "shortDoc": "An object containing name/value pairs of custom editor type definitions that allow\nthe grid to support additional typ..." - }, - { - "tagname": "cfg", - "name": "customRenderers", - "member": "Ext.grid.property.Grid", - "type": "Object", - "doc": "

An object containing name/value pairs of custom renderer type definitions that allow\nthe grid to support custom rendering of fields. By default, the grid supports strongly-typed rendering\nof strings, dates, numbers and booleans using built-in form editors, but any custom type can be supported and\nassociated with the type of the value. The name of the renderer type should correspond with the name of the property\nthat it will render. Example usage:

\n\n
var grid = Ext.create('Ext.grid.property.Grid', {\n    customRenderers: {\n        Available: function(v){\n            if (v) {\n                return 'Yes';\n            } else {\n                return 'No';\n            }\n        }\n    },\n    source: {\n        Available: true\n    }\n});\n
\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 84, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-cfg-customRenderers", - "shortDoc": "An object containing name/value pairs of custom renderer type definitions that allow\nthe grid to support custom rende..." - }, - { - "tagname": "cfg", - "name": "data", - "member": "Ext.AbstractComponent", - "type": "Mixed", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 239, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-data" - }, - { - "tagname": "cfg", - "name": "defaultType", - "member": "Ext.container.AbstractContainer", - "type": "String", - "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\n

Defaults to 'panel'.

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 168, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.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..." - }, - { - "tagname": "cfg", - "name": "defaults", - "member": "Ext.container.AbstractContainer", - "type": "Object|Function", - "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\n

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

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

\n\n\n

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

\n\n\n

Usage:

\n\n\n
defaults: {               // 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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 126, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.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 ..." - }, - { - "tagname": "cfg", - "name": "disabled", - "member": "Ext.AbstractComponent", - "type": "Boolean", - "doc": "

Defaults to false.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 363, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-disabled" - }, - { - "tagname": "cfg", - "name": "disabledCls", - "member": "Ext.AbstractComponent", - "type": "String", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 281, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-disabledCls" - }, - { - "tagname": "cfg", - "name": "dockedItems", - "member": "Ext.panel.Panel", - "type": "Object/Array", - "doc": "

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

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 242, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-dockedItems", - "shortDoc": "A component or series of components to be added as docked items to this panel.\nThe docked items can be docked to eith..." - }, - { - "tagname": "cfg", - "name": "draggable", - "member": "Ext.Component", - "type": "Mixed", - "doc": "

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

\n\n\n

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

\n\n\n

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

\n\n\n

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 234, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-cfg-draggable", - "shortDoc": "Specify as true to make a floating Component draggable using the Component's encapsulating element as the drag handle..." - }, - { - "tagname": "cfg", - "name": "fbar", - "member": "Ext.panel.Panel", - "type": "Object/Array", - "doc": "

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

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

is equivalent to

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

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 541, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-fbar", - "shortDoc": "Convenience method used for adding items to the bottom right of the panel. Short for Footer Bar.\n\nfbar: [\n { type: '..." - }, - { - "tagname": "cfg", - "name": "floatable", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

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

\n\n\n

true to allow clicking a collapsed Panel's placeholder to display the Panel floated\nabove the layout, false to force the user to fully expand a collapsed region by\nclicking the expand button to see it again (defaults to true).

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 180, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-floatable", - "shortDoc": "Important: This config is only effective for collapsible Panels which are direct child items of a border layout.\n\n\ntr..." - }, - { - "tagname": "cfg", - "name": "floating", - "member": "Ext.Component", - "type": "Boolean", - "doc": "

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

\n\n\n

Components such as Windows and Menus are floating\nby default.

\n\n\n

Floating Components that are programatically rendered will register themselves with the global\nZIndexManager

\n\n\n

Floating Components as child items of a Container

\n\n\n

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

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

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

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

\n\n\n

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

\n\n\n

After 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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 175, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-cfg-floating", - "shortDoc": "Specify as true to float the Component outside of the document flow using CSS absolute positioning.\n\n\nComponents such..." - }, - { - "tagname": "cfg", - "name": "focusOnToFront", - "member": "Ext.util.Floating", - "type": "Boolean", - "doc": "

Specifies whether the floated component should be automatically focused when it is\nbrought to the front. Defaults to true.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js", - "linenr": 9, - "html_filename": "Floating.html", - "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. Defaults to ..." - }, - { - "tagname": "cfg", - "name": "forceFit", - "member": "Ext.panel.Table", - "type": "Boolean", - "doc": "

Specify as true to force the columns to fit into the available width. Headers are first sized according to configuration, whether that be\na specific width, or flex. Then they are all proportionally changed in width so that the entire content width is used..

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 64, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-cfg-forceFit", - "shortDoc": "Specify as true to force the columns to fit into the available width. Headers are first sized according to configurat..." - }, - { - "tagname": "cfg", - "name": "frame", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

True to apply a frame to the panel.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 269, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-frame" - }, - { - "tagname": "cfg", - "name": "frameHeader", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 275, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-frameHeader" - }, - { - "tagname": "cfg", - "name": "headerPosition", - "member": "Ext.panel.Panel", - "type": "String", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 264, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-headerPosition" - }, - { - "tagname": "cfg", - "name": "height", - "member": "Ext.AbstractComponent", - "type": "Number", - "doc": "

The height of this component in pixels.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 334, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-height" - }, - { - "tagname": "cfg", - "name": "hidden", - "member": "Ext.AbstractComponent", - "type": "Boolean", - "doc": "

Defaults to false.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 357, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-hidden" - }, - { - "tagname": "cfg", - "name": "hideCollapseTool", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

true to hide the expand/collapse toggle button when collapsible == true,\nfalse to display it (defaults to false).

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 143, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-hideCollapseTool" - }, - { - "tagname": "cfg", - "name": "hideHeaders", - "member": "Ext.panel.Table", - "type": "Boolean", - "doc": "

Specify as true to hide the headers.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 70, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-cfg-hideHeaders" - }, - { - "tagname": "cfg", - "name": "hideMode", - "member": "Ext.AbstractComponent", - "type": "String", - "doc": "

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

\nDefaults to 'display'.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 388, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-hideMode", - "shortDoc": "A String which specifies how this Component's encapsulating DOM element will be hidden.\nValues may be\n'display' : The..." - }, - { - "tagname": "cfg", - "name": "html", - "member": "Ext.AbstractComponent", - "type": "String/Object", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 419, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-html", - "shortDoc": "An HTML fragment, or a DomHelper specification to use as the layout element\ncontent (defaults to ''). The HTML conten..." - }, - { - "tagname": "cfg", - "name": "id", - "member": "Ext.AbstractComponent", - "type": "String", - "doc": "

The unique id of this component instance (defaults to an auto-assigned id).

\n\n\n

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

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

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

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

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 50, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-id", - "shortDoc": "The unique id of this component instance (defaults to an auto-assigned id).\n\n\nIt should not be necessary to use this ..." - }, - { - "tagname": "cfg", - "name": "itemId", - "member": "Ext.AbstractComponent", - "type": "String", - "doc": "

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.

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

Also see id, query, down and child.

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 66, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-itemId", - "shortDoc": "An itemId can be used as an alternative way to get a reference to a component\nwhen no object reference is available. ..." - }, - { - "tagname": "cfg", - "name": "items", - "member": "Ext.container.AbstractContainer", - "type": "Object/Array", - "doc": "

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

\n\n\n

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

\n

Example:

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

Each item may be:

\n\n

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

\n

Every Component class has its own xtype.

\n

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

\n

Notes:

\n

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

\n

Do not specify contentEl or \nhtml with items.

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 94, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.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..." - }, - { - "tagname": "cfg", - "name": "layout", - "member": "Ext.container.AbstractContainer", - "type": "String/Object", - "doc": "

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

\n\n\n

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

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

\n\n\n

layout may be specified as either as an Object or\n\n\n

as a String:

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 20, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-layout", - "shortDoc": "*Important: In order for child items to be correctly sized and\npositioned, typically a layout manager must be specifi..." - }, - { - "tagname": "cfg", - "name": "lbar", - "member": "Ext.panel.Panel", - "type": "Object/Array", - "doc": "

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

\n\n

lbar: [

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

]

\n\n

is equivalent to

\n\n

dockedItems: [{

\n\n
   xtype: 'toolbar',\n   dock: 'left',\n   items: [\n       { xtype: 'button', text: 'Button 1' }\n   ]\n
\n\n

}]

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 593, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-lbar", - "shortDoc": "Convenience method. Short for 'Left Bar' (left-docked, vertical toolbar).\n\n lbar: [\n\n { xtype: 'button', text: 'But..." - }, - { - "tagname": "cfg", - "name": "listeners", - "member": "Ext.util.Observable", - "type": "Object", - "doc": "

(optional)

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

\n\n

DOM events from ExtJs Components

\n\n\n

While some ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this\n\n\n

is usually only done when extra value can be added. For example the DataView's\nclick event passing the node clicked on. To access DOM\nevents directly from a child element of a Component, we need to specify the element option to\nidentify the Component property to add a DOM listener to:

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 103, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-cfg-listeners", - "shortDoc": "(optional) A config object containing one or more event handlers to be added to this\nobject during initialization. T..." - }, - { - "tagname": "cfg", - "name": "loader", - "member": "Ext.AbstractComponent", - "type": "Ext.ComponentLoader/Object", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 462, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-loader" - }, - { - "tagname": "cfg", - "name": "maintainFlex", - "member": "Ext.Component", - "type": "Boolean", - "doc": "

Only valid when a sibling element of a Splitter within a VBox or\nHBox layout.

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 256, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-cfg-maintainFlex", - "shortDoc": "Only valid when a sibling element of a Splitter within a VBox or\nHBox layout.\n\n\nSpecifies that if an immediate siblin..." - }, - { - "tagname": "cfg", - "name": "margin", - "member": "Ext.AbstractComponent", - "type": "Number/String", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 351, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-margin", - "shortDoc": "Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or\nit can be ..." - }, - { - "tagname": "cfg", - "name": "maxHeight", - "member": "Ext.AbstractComponent", - "type": "Number", - "doc": "

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

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 451, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-maxHeight", - "shortDoc": "The maximum value in pixels which this Component will set its height to.\n\n\nWarning: This will override any size manag..." - }, - { - "tagname": "cfg", - "name": "maxWidth", - "member": "Ext.AbstractComponent", - "type": "Number", - "doc": "

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

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 456, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-maxWidth", - "shortDoc": "The maximum value in pixels which this Component will set its width to.\n\n\nWarning: This will override any size manage..." - }, - { - "tagname": "cfg", - "name": "minButtonWidth", - "member": "Ext.panel.Panel", - "type": "Number", - "doc": "

Minimum width of all footer toolbar buttons in pixels (defaults to 75). If set, this will\nbe used as the default value for the Ext.button.Button.minWidth config of\neach Button added to the footer toolbar via the fbar or buttons configurations.\nIt will be ignored for buttons that have a minWidth configured some other way, e.g. in their own config\nobject or via the defaults of their parent container.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 119, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-minButtonWidth", - "shortDoc": "Minimum width of all footer toolbar buttons in pixels (defaults to 75). If set, this will\nbe used as the default valu..." - }, - { - "tagname": "cfg", - "name": "minHeight", - "member": "Ext.AbstractComponent", - "type": "Number", - "doc": "

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

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 441, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-minHeight", - "shortDoc": "The minimum value in pixels which this Component will set its height to.\n\n\nWarning: This will override any size manag..." - }, - { - "tagname": "cfg", - "name": "minWidth", - "member": "Ext.AbstractComponent", - "type": "Number", - "doc": "

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

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 446, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-minWidth", - "shortDoc": "The minimum value in pixels which this Component will set its width to.\n\n\nWarning: This will override any size manage..." - }, - { - "tagname": "cfg", - "name": "nameField", - "member": "Ext.grid.property.Grid", - "type": "String", - "doc": "

Optional. The name of the field from the property store to use as the property field name. Defaults to 'name'\nThis may be useful if you do not configure the property Grid from an object, but use your own store configuration.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 115, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-cfg-nameField", - "shortDoc": "Optional. The name of the field from the property store to use as the property field name. Defaults to 'name'\nThis ma..." - }, - { - "tagname": "cfg", - "name": "overCls", - "member": "Ext.AbstractComponent", - "type": "String", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 274, - "html_filename": "AbstractComponent.html", - "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..." - }, - { - "tagname": "cfg", - "name": "overlapHeader", - "member": "Ext.panel.Panel", - "type": "Mixed", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 189, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-overlapHeader", - "shortDoc": "True to overlap the header in a panel over the framing of the panel itself. This is needed when frame:true (and is do..." - }, - { - "tagname": "cfg", - "name": "padding", - "member": "Ext.AbstractComponent", - "type": "Number/String", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 345, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-padding", - "shortDoc": "Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or\nit can b..." - }, - { - "tagname": "cfg", - "name": "placeholder", - "member": "Ext.panel.Panel", - "type": "Mixed", - "doc": "

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

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 171, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-placeholder", - "shortDoc": "Important: This config is only effective for collapsible Panels which are direct child items of a border layout\nwhen ..." - }, - { - "tagname": "cfg", - "name": "plugins", - "member": "Ext.AbstractComponent", - "type": "Object/Array", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 491, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-plugins", - "shortDoc": "An object or array of objects that will provide custom functionality for this component. The only\nrequirement for a ..." - }, - { - "tagname": "cfg", - "name": "preventHeader", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

Prevent a Header from being created and shown. Defaults to false.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 259, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-preventHeader" - }, - { - "tagname": "cfg", - "name": "propertyNames", - "member": "Ext.grid.property.Grid", - "type": "Object", - "doc": "

An object containing custom property name/display name pairs.\nIf specified, the display name will be shown in the name column instead of the property name.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 44, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-cfg-propertyNames", - "shortDoc": "An object containing custom property name/display name pairs.\nIf specified, the display name will be shown in the nam..." - }, - { - "tagname": "cfg", - "name": "rbar", - "member": "Ext.panel.Panel", - "type": "Object/Array", - "doc": "

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

\n\n

rbar: [

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

]

\n\n

is equivalent to

\n\n

dockedItems: [{

\n\n
   xtype: 'toolbar',\n   dock: 'right',\n   items: [\n       { xtype: 'button', text: 'Button 1' }\n   ]\n
\n\n

}]

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 619, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-rbar", - "shortDoc": "Convenience method. Short for 'Right Bar' (right-docked, vertical toolbar).\n\n rbar: [\n\n { xtype: 'button', text: 'B..." - }, - { - "tagname": "cfg", - "name": "renderSelectors", - "member": "Ext.AbstractComponent", - "type": "Object", - "doc": "

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

\n\n

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

\n\n

For example, a Component which rendered an image, and description into its element might use the following properties\ncoded into its prototype:

\n\n
renderTpl: '&lt;img src=\"{imageUrl}\" class=\"x-image-component-img\">&lt;div class=\"x-image-component-desc\">{description}&gt;/div&lt;',\n\nrenderSelectors: {\n    image: 'img.x-image-component-img',\n    descEl: 'div.x-image-component-desc'\n}\n
\n\n

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 158, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderSelectors", - "shortDoc": "An object containing properties specifying DomQuery selectors which identify child elements\ncreated by the render pro..." - }, - { - "tagname": "cfg", - "name": "renderTo", - "member": "Ext.AbstractComponent", - "type": "Mixed", - "doc": "

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

\n\n\n
\n\n\n

See render also.

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 183, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderTo", - "shortDoc": "Specify the id of the element, a DOM element or an existing Element that this component\nwill be rendered into.\n\n\n\nNot..." - }, - { - "tagname": "cfg", - "name": "renderTpl", - "member": "Ext.AbstractComponent", - "type": "Mixed", - "doc": "

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

\n\n\n

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

\n\n\n

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

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 143, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderTpl", - "shortDoc": "An XTemplate used to create the internal structure inside this Component's\nencapsulating Element.\n\n\nYou do not normal..." - }, - { - "tagname": "cfg", - "name": "resizable", - "member": "Ext.Component", - "type": "Mixed", - "doc": "

Specify as true to apply a Resizer to this Component\nafter rendering.

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 154, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-cfg-resizable", - "shortDoc": "Specify as true to apply a Resizer to this Component\nafter rendering.\n\n\nMay also be specified as a config object to b..." - }, - { - "tagname": "cfg", - "name": "resizeHandles", - "member": "Ext.Component", - "type": "String", - "doc": "

A valid Ext.resizer.Resizer handles config string (defaults to 'all'). Only applies when resizable = true.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 163, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-cfg-resizeHandles" - }, - { - "tagname": "cfg", - "name": "saveBuffer", - "member": "Ext.state.Stateful", - "type": "Number", - "doc": "

A buffer to be applied if many state events are fired within\na short period. Defaults to 100.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 74, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-cfg-saveBuffer" - }, - { - "tagname": "cfg", - "name": "scroll", - "member": "Ext.panel.Table", - "type": "String/Boolean", - "doc": "

Valid values are 'both', 'horizontal' or 'vertical'. true implies 'both'. false implies 'none'.\nDefaults to true.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 51, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-cfg-scroll" - }, - { - "tagname": "cfg", - "name": "scrollDelta", - "member": "Ext.panel.Table", - "type": "Number", - "doc": "

Number of pixels to scroll when scrolling with mousewheel.\nDefaults to 40.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 44, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-cfg-scrollDelta" - }, - { - "tagname": "cfg", - "name": "shadow", - "member": "Ext.util.Floating", - "type": "String/Boolean", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js", - "linenr": 16, - "html_filename": "Floating.html", - "href": "Floating.html#Ext-util-Floating-cfg-shadow", - "shortDoc": "Specifies whether the floating component should be given a shadow. Set to\ntrue to automatically create an Ext.Shadow,..." - }, - { - "tagname": "cfg", - "name": "sortableColumns", - "member": "Ext.panel.Table", - "type": "Boolean", - "doc": "

Defaults to true. Set to false to disable column sorting via clicking the\nheader and via the Sorting menu items.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 75, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-cfg-sortableColumns" - }, - { - "tagname": "cfg", - "name": "source", - "member": "Ext.grid.property.Grid", - "type": "Object", - "doc": "

A data object to use as the data source of the grid (see setSource for details).

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 80, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-cfg-source" - }, - { - "tagname": "cfg", - "name": "stateEvents", - "member": "Ext.state.Stateful", - "type": "Array", - "doc": "

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

\n\n\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 64, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-cfg-stateEvents", - "shortDoc": "An array of events that, when fired, should trigger this object to\nsave its state (defaults to none). stateEvents may..." - }, - { - "tagname": "cfg", - "name": "stateId", - "member": "Ext.state.Stateful", - "type": "String", - "doc": "

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

\n\n

See stateful for an explanation of saving and restoring state.

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 58, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-cfg-stateId", - "shortDoc": "The unique id for this object to use for state management purposes.\n\nSee stateful for an explanation of saving and re..." - }, - { - "tagname": "cfg", - "name": "stateful", - "member": "Ext.state.Stateful", - "type": "Boolean", - "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.

\n

To set the state provider for the current page:

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

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

\n

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

\n

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

.\n

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

\n

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

\n

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

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 18, - "html_filename": "Stateful.html", - "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. ..." - }, - { - "tagname": "cfg", - "name": "style", - "member": "Ext.AbstractComponent", - "type": "String", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 300, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-style", - "shortDoc": "A custom style specification to be applied to this component's Element. Should be a valid argument to\nExt.core.Eleme..." - }, - { - "tagname": "cfg", - "name": "styleHtmlCls", - "member": "Ext.AbstractComponent", - "type": "String", - "doc": "

The class that is added to the content target when you set styleHtmlContent to true.\nDefaults to 'x-html'

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 434, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-styleHtmlCls" - }, - { - "tagname": "cfg", - "name": "styleHtmlContent", - "member": "Ext.AbstractComponent", - "type": "Boolean", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 427, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-styleHtmlContent" - }, - { - "tagname": "cfg", - "name": "suspendLayout", - "member": "Ext.container.AbstractContainer", - "type": "Boolean", - "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", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 155, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-suspendLayout", - "shortDoc": "If true, suspend calls to doLayout. Useful when batching multiple adds to a container and not passing them\nas multip..." - }, - { - "tagname": "cfg", - "name": "tbar", - "member": "Ext.panel.Panel", - "type": "Object/Array", - "doc": "

Convenience method. Short for 'Top Bar'.

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

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'top',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 457, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-tbar", - "shortDoc": "Convenience method. Short for 'Top Bar'.\n\ntbar: [\n { xtype: 'button', text: 'Button 1' }\n]\n\n\nis equivalent to\n\ndocke..." - }, - { - "tagname": "cfg", - "name": "titleCollapse", - "member": "Ext.panel.Panel", - "type": "Boolean", - "doc": "

true to allow expanding and collapsing the panel (when collapsible = true)\nby clicking anywhere in the header bar, false) to allow it only by clicking to tool button\n(defaults to false)).

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 150, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-titleCollapse", - "shortDoc": "true to allow expanding and collapsing the panel (when collapsible = true)\nby clicking anywhere in the header bar, fa..." - }, - { - "tagname": "cfg", - "name": "toFrontOnShow", - "member": "Ext.Component", - "type": "Boolean", - "doc": "

True to automatically call toFront when the show method is called\non an already visible, floating component (default is true).

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 199, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-cfg-toFrontOnShow", - "shortDoc": "True to automatically call toFront when the show method is called\non an already visible, floating component (default ..." - }, - { - "tagname": "cfg", - "name": "tools", - "member": "Ext.panel.Panel", - "type": "Array", - "doc": "

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

\n\n

Note that, apart from the toggle tool which is provided when a panel is collapsible, these\ntools only provide the visual button. Any required functionality must be provided by adding\nhandlers that implement the necessary behavior.

\n\n\n

Example usage:

\n\n\n
tools:[{\n    type:'refresh',\n    qtip: 'Refresh form Data',\n    // hidden:true,\n    handler: function(event, toolEl, panel){\n        // refresh logic\n    }\n},\n{\n    type:'help',\n    qtip: 'Get Help',\n    handler: function(event, toolEl, panel){\n        // show help here\n    }\n}]\n
\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 281, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-cfg-tools", - "shortDoc": "An array of Ext.panel.Tool configs/instances to be added to the header tool area. The tools are stored as child\ncompo..." - }, - { - "tagname": "cfg", - "name": "tpl", - "member": "Ext.AbstractComponent", - "type": "Mixed", - "doc": "

An Ext.Template, Ext.XTemplate\nor an array of strings to form an Ext.XTemplate.\nUsed in conjunction with the data and\ntplWriteMode configurations.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 231, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-tpl", - "shortDoc": "An Ext.Template, Ext.XTemplate\nor an array of strings to form an Ext.XTemplate.\nUsed in conjunction with the data and..." - }, - { - "tagname": "cfg", - "name": "tplWriteMode", - "member": "Ext.AbstractComponent", - "type": "String", - "doc": "

The Ext.(X)Template method to use when\nupdating the content area of the Component. Defaults to 'overwrite'\n(see Ext.XTemplate.overwrite).

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 245, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-tplWriteMode", - "shortDoc": "The Ext.(X)Template method to use when\nupdating the content area of the Component. Defaults to 'overwrite'\n(see Ext.X..." - }, - { - "tagname": "cfg", - "name": "ui", - "member": "Ext.AbstractComponent", - "type": "String/Array", - "doc": "

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

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 287, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-ui" - }, - { - "tagname": "cfg", - "name": "valueField", - "member": "Ext.grid.property.Grid", - "type": "String", - "doc": "

Optional. The name of the field from the property store to use as the value field name. Defaults to 'value'\nThis may be useful if you do not configure the property Grid from an object, but use your own store configuration.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 108, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-cfg-valueField", - "shortDoc": "Optional. The name of the field from the property store to use as the value field name. Defaults to 'value'\nThis may ..." - }, - { - "tagname": "cfg", - "name": "width", - "member": "Ext.AbstractComponent", - "type": "Number", - "doc": "

The width of this component in pixels.

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 329, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-width" - } - ], - "method": [ - { - "tagname": "method", - "name": "Grid", - "member": "Ext.grid.property.Grid", - "doc": "\n", - "params": [ - { - "type": "Object", - "name": "config", - "doc": "

The grid config object

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 1, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-method-constructor", - "shortDoc": "\n" - }, - { - "tagname": "method", - "name": "add", - "member": "Ext.container.AbstractContainer", - "doc": "

Adds Component(s) to this Container.

\n\n

Description:

\n\n\n\n\n

Notes:

\n\n

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

\n\n

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

\n\n

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

\n\n

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

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

Warning:##

\n\n

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

\n", - "params": [ - { - "type": "...Object/Array", - "name": "Component", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component/Array", - "doc": "

The Components that were added.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 423, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-add", - "shortDoc": "Adds Component(s) to this Container.\n\nDescription:\n\n\nFires the beforeadd event before adding.\nThe Container's default..." - }, - { - "tagname": "method", - "name": "addClass", - "member": "Ext.AbstractComponent", - "doc": "

@deprecated 4.0 Replaced by addCls\nAdds a CSS class to the top level element representing this component.

\n", - "params": [ - { - "type": "String", - "name": "cls", - "doc": "

The CSS class name to add

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

Returns the Component to allow method chaining.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2161, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-addClass", - "shortDoc": "

@deprecated 4.0 Replaced by addCls\nAdds a CSS class to the top level element representing this component.

\n" - }, - { - "tagname": "method", - "name": "addCls", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "String", - "name": "cls", - "doc": "

The CSS class name to add

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

Returns the Component to allow method chaining.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2139, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-addCls", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "addClsWithUI", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "String/Array", - "name": "cls", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1346, - "html_filename": "AbstractComponent.html", - "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.

\n" - }, - { - "tagname": "method", - "name": "addDocked", - "member": "Ext.panel.AbstractPanel", - "doc": "

Adds docked item(s) to the panel.

\n", - "params": [ - { - "type": "Object/Array", - "name": "component", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Number", - "name": "pos", - "doc": "

(optional) The index at which the Component will be added

\n", - "optional": true - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 235, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-addDocked", - "shortDoc": "

Adds docked item(s) to the panel.

\n" - }, - { - "tagname": "method", - "name": "addEvents", - "member": "Ext.util.Observable", - "doc": "

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

\n", - "params": [ - { - "type": "Object/String", - "name": "o", - "doc": "

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

\n", - "optional": false - }, - { - "type": "String", - "name": "", - "doc": "

[additional] Optional additional event names if multiple event names are being passed as separate parameters.\nUsage:

\n\n
this.addEvents('storeloaded', 'storecleared');\n
\n\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 452, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-addEvents", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "addListener", - "member": "Ext.util.Observable", - "doc": "

Appends an event handler to this object.

\n", - "params": [ - { - "type": "String", - "name": "eventName", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Function", - "name": "handler", - "doc": "

The method the event invokes.

\n", - "optional": false - }, - { - "type": "Object", - "name": "scope", - "doc": "

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

\n", - "optional": true - }, - { - "type": "Object", - "name": "options", - "doc": "

(optional) An object containing handler configuration.\nproperties. This may contain any of the following properties:


\n\n

\nCombining Options
\nUsing the options argument, it is possible to combine different types of listeners:
\n
\nA delayed, one-time listener.\n

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

\nAttaching multiple handlers in 1 call
\nThe method also allows for a single argument to be passed which is a config object containing properties\nwhich specify multiple events. For example:\n

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

\n\n", - "optional": true - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 271, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-addListener", - "shortDoc": "

Appends an event handler to this object.

\n" - }, - { - "tagname": "method", - "name": "addManagedListener", - "member": "Ext.util.Observable", - "doc": "

Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n", - "params": [ - { - "type": "Observable/Element", - "name": "item", - "doc": "

The item to which to add a listener/listeners.

\n", - "optional": false - }, - { - "type": "Object/String", - "name": "ename", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Function", - "name": "fn", - "doc": "

Optional. If the ename parameter was an event name, this\nis the handler function.

\n", - "optional": false - }, - { - "type": "Object", - "name": "scope", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Object", - "name": "opt", - "doc": "

Optional. If the ename parameter was an event name, this\nis the addListener options.

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 155, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-addManagedListener", - "shortDoc": "

Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n" - }, - { - "tagname": "method", - "name": "addStateEvents", - "member": "Ext.state.Stateful", - "doc": "

Add events that will trigger the state to be saved.

\n", - "params": [ - { - "type": "String/Array", - "name": "events", - "doc": "

The event name or an array of event names.

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 159, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-method-addStateEvents", - "shortDoc": "

Add events that will trigger the state to be saved.

\n" - }, - { - "tagname": "method", - "name": "afterComponentLayout", - "member": "Ext.AbstractComponent", - "doc": "\n", - "params": [ - { - "type": "Number", - "name": "adjWidth", - "doc": "

The box-adjusted width that was set

\n", - "optional": false - }, - { - "type": "Number", - "name": "adjHeight", - "doc": "

The box-adjusted height that was set

\n", - "optional": false - }, - { - "type": "Boolean", - "name": "isSetSize", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Ext.Component", - "name": "layoutOwner", - "doc": "

Component which sent the layout. Only used when isSetSize is false.

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2481, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-afterComponentLayout", - "shortDoc": "\n" - }, - { - "tagname": "method", - "name": "alignTo", - "member": "Ext.util.Floating", - "doc": "

Aligns this floating Component to the specified element

\n", - "params": [ - { - "type": "Mixed", - "name": "element", - "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", - "optional": false - }, - { - "type": "String", - "name": "position", - "doc": "

(optional, defaults to \"tl-bl?\") The position to align to (see Ext.core.Element.alignTo for more details).

\n", - "optional": false - }, - { - "type": "Array", - "name": "offsets", - "doc": "

(optional) Offset the positioning by [x, y]

\n", - "optional": true - } - ], - "return": { - "type": "Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js", - "linenr": 171, - "html_filename": "Floating.html", - "href": "Floating.html#Ext-util-Floating-method-alignTo", - "shortDoc": "

Aligns this floating Component to the specified element

\n" - }, - { - "tagname": "method", - "name": "animate", - "member": "Ext.util.Animate", - "doc": "

Perform custom animation on this object.

\n

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

\n

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

\n

Properties include

\n

Animating an Element

\nWhen animating an Element, the following properties may be specified in from, to, and keyframe objects:\n

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

\n

Animating a Component

\nWhen animating an Element, the following properties may be specified in from, to, and keyframe objects:\n

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

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

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

\n\n", - "params": [ - { - "type": "Object", - "name": "config", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "Object", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js", - "linenr": 207, - "html_filename": "Animate.html", - "href": "Animate.html#Ext-util-Animate-method-animate", - "shortDoc": "Perform custom animation on this object.\nThis method is applicable to both the the Component class and the Element cl..." - }, - { - "tagname": "method", - "name": "applyState", - "member": "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", - "params": [ - { - "type": "Object", - "name": "state", - "doc": "

The state

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 225, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-method-applyState", - "shortDoc": "Applies the state to the object. This should be overridden in subclasses to do\nmore complex state operations. By defa..." - }, - { - "tagname": "method", - "name": "beforeComponentLayout", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "Number", - "name": "adjWidth", - "doc": "

The box-adjusted width that was set

\n", - "optional": false - }, - { - "type": "Number", - "name": "adjHeight", - "doc": "

The box-adjusted height that was set

\n", - "optional": false - }, - { - "type": "Boolean", - "name": "isSetSize", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Ext.Component", - "name": "layoutOwner", - "doc": "

Component which sent the layout. Only used when isSetSize is false.

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2491, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-beforeComponentLayout", - "shortDoc": "Occurs before componentLayout is run. Returning false from this method will prevent the componentLayout\nfrom being ex..." - }, - { - "tagname": "method", - "name": "beforeLayout", - "member": "Ext.container.AbstractContainer", - "doc": "

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

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 853, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-beforeLayout", - "shortDoc": "Occurs before componentLayout is run. Returning false from this method will prevent the containerLayout\nfrom being ex..." - }, - { - "tagname": "method", - "name": "bubble", - "member": "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", - "params": [ - { - "type": "Function", - "name": "fn", - "doc": "

The function to call

\n", - "optional": false - }, - { - "type": "Object", - "name": "scope", - "doc": "

(optional) The scope of the function (defaults to current node)

\n", - "optional": true - }, - { - "type": "Array", - "name": "args", - "doc": "

(optional) The args to call the function with (default to passing the current component)

\n", - "optional": true - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 1004, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-bubble", - "shortDoc": "Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of..." - }, - { - "tagname": "method", - "name": "capture", - "member": "Ext.util.Observable", - "doc": "

Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\nbefore the event is fired. If the supplied function returns false,\nthe event will not fire.

\n", - "params": [ - { - "type": "Observable", - "name": "o", - "doc": "

The Observable to capture events from.

\n", - "optional": false - }, - { - "type": "Function", - "name": "fn", - "doc": "

The function to call when an event is fired.

\n", - "optional": false - }, - { - "type": "Object", - "name": "scope", - "doc": "

(optional) The scope (this reference) in which the function is executed. Defaults to the Observable firing the event.

\n", - "optional": true - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": true, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 55, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-capture", - "shortDoc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + ..." - }, - { - "tagname": "method", - "name": "cascade", - "member": "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.

\n", - "params": [ - { - "type": "Function", - "name": "fn", - "doc": "

The function to call

\n", - "optional": false - }, - { - "type": "Object", - "name": "scope", - "doc": "

(optional) The scope of the function (defaults to current component)

\n", - "optional": true - }, - { - "type": "Array", - "name": "args", - "doc": "

(optional) The args to call the function with. The current component always passed as the last argument.

\n", - "optional": true - } - ], - "return": { - "type": "Ext.Container", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 717, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-cascade", - "shortDoc": "Cascades down the component/container heirarchy from this component (passed in the first call), calling the specified..." - }, - { - "tagname": "method", - "name": "center", - "member": "Ext.util.Floating", - "doc": "

Center this Component in its container.

\n", - "params": [ - - ], - "return": { - "type": "Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js", - "linenr": 249, - "html_filename": "Floating.html", - "href": "Floating.html#Ext-util-Floating-method-center", - "shortDoc": "

Center this Component in its container.

\n" - }, - { - "tagname": "method", - "name": "child", - "member": "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", - "params": [ - { - "type": "String", - "name": "selector", - "doc": "

An Ext.ComponentQuery selector

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "

Ext.Component

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 782, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-child", - "shortDoc": "Retrieves the first direct child of this container which matches the passed selector.\nThe passed in selector must com..." - }, - { - "tagname": "method", - "name": "clearListeners", - "member": "Ext.util.Observable", - "doc": "

Removes all listeners for this object including the managed listeners

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 383, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-clearListeners", - "shortDoc": "

Removes all listeners for this object including the managed listeners

\n" - }, - { - "tagname": "method", - "name": "clearManagedListeners", - "member": "Ext.util.Observable", - "doc": "

Removes all managed listeners for this object.

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 412, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners", - "shortDoc": "

Removes all managed listeners for this object.

\n" - }, - { - "tagname": "method", - "name": "cloneConfig", - "member": "Ext.Component", - "doc": "

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

\n", - "params": [ - { - "type": "Object", - "name": "overrides", - "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", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

clone The cloned copy of this component

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 944, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-cloneConfig", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "close", - "member": "Ext.panel.Panel", - "doc": "

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

\n

Note: This method is not affected by the closeAction setting which\nonly affects the action triggered when clicking the 'close' tool in the header.\nTo hide the Panel without destroying it, call hide.

\n\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 698, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-method-close", - "shortDoc": "Closes the Panel. By default, this method, removes it from the DOM, destroys\nthe Panel object and all its descendant ..." - }, - { - "tagname": "method", - "name": "collapse", - "member": "Ext.panel.Panel", - "doc": "

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

\n", - "params": [ - { - "type": "Number", - "name": "direction", - "doc": "

. The direction to collapse towards. Must be one of

\n", - "optional": false - }, - { - "type": "Boolean", - "name": "animate", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Object", - "name": "internal", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "Ext.panel.Panel", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 842, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-method-collapse", - "shortDoc": "Collapses the panel body so that the body becomes hidden. Docked Components parallel to the\nborder towards which the ..." - }, - { - "tagname": "method", - "name": "destroy", - "member": "Ext.AbstractComponent", - "doc": "

Destroys the Component.

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2672, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-destroy", - "shortDoc": "

Destroys the Component.

\n" - }, - { - "tagname": "method", - "name": "determineScrollbars", - "member": "Ext.panel.Table", - "doc": "

Request a recalculation of scrollbars and put them in if they are needed.

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 729, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-determineScrollbars", - "shortDoc": "

Request a recalculation of scrollbars and put them in if they are needed.

\n" - }, - { - "tagname": "method", - "name": "disable", - "member": "Ext.AbstractComponent", - "doc": "

Disable the component.

\n", - "params": [ - { - "type": "Boolean", - "name": "silent", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2078, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-disable", - "shortDoc": "

Disable the component.

\n" - }, - { - "tagname": "method", - "name": "doAutoRender", - "member": "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", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 816, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-doAutoRender", - "shortDoc": "Handles autoRender.\nFloating Components may have an ownerCt. If they are asking to be constrained, constrain them wit..." - }, - { - "tagname": "method", - "name": "doComponentLayout", - "member": "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", - "params": [ - { - "type": "Object", - "name": "width", - "doc": "\n", - "optional": false - }, - { - "type": "Object", - "name": "height", - "doc": "\n", - "optional": false - }, - { - "type": "Object", - "name": "isSetSize", - "doc": "\n", - "optional": false - }, - { - "type": "Object", - "name": "ownerCt", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "Ext.container.Container", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2437, - "html_filename": "AbstractComponent.html", - "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..." - }, - { - "tagname": "method", - "name": "doConstrain", - "member": "Ext.util.Floating", - "doc": "

Moves this floating Component into a constrain region.

\n\n\n

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

\n\n\n

An alternative constraint may be passed.

\n\n", - "params": [ - { - "type": "Mixed", - "name": "constrainTo", - "doc": "

Optional. The Element or Region into which this Component is to be constrained.

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js", - "linenr": 133, - "html_filename": "Floating.html", - "href": "Floating.html#Ext-util-Floating-method-doConstrain", - "shortDoc": "Moves this floating Component into a constrain region.\n\n\nBy default, this Component is constrained to be within the c..." - }, - { - "tagname": "method", - "name": "doLayout", - "member": "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", - "params": [ - - ], - "return": { - "type": "Ext.container.Container", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 321, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-doLayout", - "shortDoc": "Manually force this container's layout to be recalculated. The framwork uses this internally to refresh layouts\nform..." - }, - { - "tagname": "method", - "name": "down", - "member": "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", - "params": [ - { - "type": "String", - "name": "selector", - "doc": "

An Ext.ComponentQuery selector

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "

Ext.Component

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 792, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-down", - "shortDoc": "Retrieves the first descendant of this container which matches the passed selector.\nThe passed in selector must compl..." - }, - { - "tagname": "method", - "name": "enable", - "member": "Ext.AbstractComponent", - "doc": "

Enable the component

\n", - "params": [ - { - "type": "Boolean", - "name": "silent", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2055, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-enable", - "shortDoc": "

Enable the component

\n" - }, - { - "tagname": "method", - "name": "enableBubble", - "member": "Ext.util.Observable", - "doc": "

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

\n\n\n

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

\n\n\n

Example:

\n\n\n
Ext.override(Ext.form.field.Base, {\n//  Add functionality to Field's initComponent to enable the change event to bubble\ninitComponent : 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.\ngetBubbleTarget : function() {\n    if (!this.formPanel) {\n        this.formPanel = this.findParentByType('form');\n    }\n    return this.formPanel;\n}\n});\n\nvar myForm = new Ext.formPanel({\ntitle: 'User Details',\nitems: [{\n    ...\n}],\nlisteners: {\n    change: function() {\n        // Title goes red if form has been modified.\n        myForm.header.setStyle('color', 'red');\n    }\n}\n});\n
\n\n", - "params": [ - { - "type": "String/Array", - "name": "events", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 554, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-enableBubble", - "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present...." - }, - { - "tagname": "method", - "name": "expand", - "member": "Ext.panel.Panel", - "doc": "

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

\n", - "params": [ - { - "type": "Boolean", - "name": "animate", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "Ext.panel.Panel", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 1123, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-method-expand", - "shortDoc": "Expands the panel body so that it becomes visible. Fires the beforeexpand event which will\ncancel the expand action ..." - }, - { - "tagname": "method", - "name": "findLayoutController", - "member": "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", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 772, - "html_filename": "AbstractComponent.html", - "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..." - }, - { - "tagname": "method", - "name": "findParentBy", - "member": "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", - "params": [ - { - "type": "Function", - "name": "fn", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "Ext.container.Container", - "doc": "

The first Container for which the custom function returns true

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 975, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-findParentBy", - "shortDoc": "Find a container above this component at any level by a custom function. If the passed function returns\ntrue, the con..." - }, - { - "tagname": "method", - "name": "findParentByType", - "member": "Ext.Component", - "doc": "

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

\n\n\n

See also the up method.

\n\n", - "params": [ - { - "type": "String/Class", - "name": "xtype", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "Ext.container.Container", - "doc": "

The first Container which matches the given xtype or class

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 989, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-findParentByType", - "shortDoc": "

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

\n\n\n

See also the up method.

\n\n" - }, - { - "tagname": "method", - "name": "fireEvent", - "member": "Ext.util.Observable", - "doc": "

Fires the specified event with the passed parameters (minus the event name).

\n\n\n

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

\n\n", - "params": [ - { - "type": "String", - "name": "eventName", - "doc": "

The name of the event to fire.

\n", - "optional": false - }, - { - "type": "Object...", - "name": "args", - "doc": "

Variable number of parameters are passed to handlers.

\n", - "optional": false - } - ], - "return": { + "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": "Boolean", - "doc": "

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

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 232, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-fireEvent", - "shortDoc": "Fires the specified event with the passed parameters (minus the event name).\n\n\nAn event may be set to bubble up an Ob..." - }, - { - "tagname": "method", - "name": "focus", - "member": "Ext.Component", - "doc": "

Try to focus this component.

\n", - "params": [ - { - "type": "Boolean", - "name": "selectText", - "doc": "

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

\n", - "optional": true - }, - { - "type": "Boolean/Number", - "name": "delay", - "doc": "

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

\n", - "optional": true - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 853, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-focus", - "shortDoc": "

Try to focus this component.

\n" - }, - { - "tagname": "method", - "name": "getActiveAnimation", - "member": "Ext.util.Animate", - "doc": "

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

\n", - "params": [ - - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-animCollapse", + "shortDoc": "true to animate the transition when the panel is collapsed, false to skip the\nanimation (defaults to true if the Ext....", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "animCollapse", + "owner": "Ext.panel.Panel", + "doc": "

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

\n", + "linenr": 109, + "html_filename": "Panel2.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", - "doc": "

anim if element has active effects, else false

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js", - "linenr": 377, - "html_filename": "Animate.html", - "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.

\n" - }, - { - "tagname": "method", - "name": "getBox", - "member": "Ext.Component", - "doc": "

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

\n", - "params": [ - { - "type": "Boolean", - "name": "local", - "doc": "

(optional) If true the element's left and top are returned instead of page XY (defaults to false)

\n", - "optional": true - } - ], - "return": { - "type": "Object", - "doc": "

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

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 538, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-getBox", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "getBubbleTarget", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - - ], - "return": { - "type": "Ext.container.Container", - "doc": "

the Container which owns this Component.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2276, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getBubbleTarget", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "getChildByElement", - "member": "Ext.container.Container", - "doc": "

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

\n", - "params": [ - { - "type": "Object", - "name": "el", - "doc": "

The element to test.

\n", - "optional": false - } - ], - "return": { - "type": "Component", - "doc": "

The child item which contains the passed element.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/container/Container.js", - "linenr": 162, - "html_filename": "Container.html", - "href": "Container.html#Ext-container-Container-method-getChildByElement", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "getComponent", - "member": "Ext.panel.AbstractPanel", - "doc": "

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

\n", - "params": [ - { - "type": "String/Number", - "name": "comp", - "doc": "

The component id, itemId or position to find

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

The component (if found)

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 148, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-getComponent", - "shortDoc": "Attempts a default component lookup (see Ext.container.Container.getComponent). If the component is not found in the ..." - }, - { - "tagname": "method", - "name": "getDockedComponent", - "member": "Ext.panel.AbstractPanel", - "doc": "

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

\n", - "params": [ - { - "type": "String/Number", - "name": "comp", - "doc": "

The id, itemId or position of the docked component (see getComponent for details)

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

The docked component (if found)

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 136, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-getDockedComponent", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "getDockedItems", - "member": "Ext.panel.AbstractPanel", - "doc": "

Retrieve an array of all currently docked Components.

\n", - "params": [ - { - "type": "String", - "name": "cqSelector", - "doc": "

A ComponentQuery selector string to filter the returned items.

\n", - "optional": false - } - ], - "return": { + "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\n

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

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

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

\n\n\n

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

\n\n\n

This defaults to true for the Window class.

\n\n", + "linenr": 499, + "html_filename": "AbstractComponent.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Component2.html#Ext-Component-cfg-autoScroll", + "shortDoc": "true to use overflow:'auto' on the components layout element and show scroll bars automatically when\nnecessary, false...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", + "private": false, + "name": "autoScroll", + "owner": "Ext.Component", + "doc": "

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

\n", + "linenr": 172, + "html_filename": "Component2.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoShow", + "shortDoc": "True to automatically show the component upon creation. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", + "private": false, + "name": "autoShow", + "owner": "Ext.AbstractComponent", + "doc": "

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": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-baseCls", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "name": "baseCls", + "owner": "Ext.panel.AbstractPanel", + "doc": "

The base CSS class to apply to this panel's element (defaults to 'x-panel').

\n", + "linenr": 17, + "html_filename": "AbstractPanel.html" + }, + { + "type": "Object/Array", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-bbar", + "shortDoc": "Convenience method. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "bbar", + "owner": "Ext.panel.Panel", + "doc": "

Convenience method. Short for 'Bottom Bar'.

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

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'bottom',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n", + "linenr": 543, + "html_filename": "Panel2.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyBorder", + "shortDoc": "A shortcut to add or remove the border on the body of a panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "name": "bodyBorder", + "owner": "Ext.panel.AbstractPanel", + "doc": "

A shortcut to add or remove the border on the body of a panel. This only applies to a panel which has the frame configuration set to true.\nDefaults to undefined.

\n", + "linenr": 30, + "html_filename": "AbstractPanel.html" + }, + { + "type": "String/Array", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyCls", + "shortDoc": "A CSS class, space-delimited string of classes, or array of classes to be applied to the panel's body element. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "name": "bodyCls", + "owner": "Ext.panel.AbstractPanel", + "doc": "

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

\n\n
bodyCls: 'foo'\nbodyCls: 'foo bar'\nbodyCls: ['foo', 'bar']\n
\n\n", + "linenr": 50, + "html_filename": "AbstractPanel.html" + }, + { + "type": "Number/String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyPadding", + "shortDoc": "A shortcut for setting a padding style on the body element. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "name": "bodyPadding", + "owner": "Ext.panel.AbstractPanel", + "doc": "

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

\n", + "linenr": 23, + "html_filename": "AbstractPanel.html" + }, + { + "type": "String/Object/Function", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyStyle", + "shortDoc": "Custom CSS styles to be applied to the panel's body element, which can be supplied as a valid CSS style string,\nan ob...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "name": "bodyStyle", + "owner": "Ext.panel.AbstractPanel", + "doc": "

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

\n\n
bodyStyle: 'background:#ffc; padding:10px;'\n\nbodyStyle: {\n    background: '#ffc',\n    padding: '10px'\n}\n
\n\n", + "linenr": 36, + "html_filename": "AbstractPanel.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", - "doc": "

An array of components.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 329, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-getDockedItems", - "shortDoc": "

Retrieve an array of all currently docked Components.

\n" - }, - { - "tagname": "method", - "name": "getEl", - "member": "Ext.AbstractComponent", - "doc": "

Retrieves the top level element representing this component.

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1892, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getEl", - "shortDoc": "

Retrieves the top level element representing this component.

\n" - }, - { - "tagname": "method", - "name": "getHeight", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - - ], - "return": { - "type": "Number", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2579, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getHeight", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "getId", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1880, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getId", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "getInsertPosition", - "member": "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", - "params": [ - { - "type": "String/Number/Element/HTMLElement", - "name": "position", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "HTMLElement", - "doc": "

DOM element that you can use in the insertBefore

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1513, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getInsertPosition", - "shortDoc": "This function takes the position argument passed to onRender and returns a\nDOM element that you can use in the insert..." - }, - { - "tagname": "method", - "name": "getLayout", - "member": "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", - "params": [ - - ], - "return": { - "type": "Ext.layout.container.AbstractContainer", - "doc": "

The layout

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 307, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-getLayout", - "shortDoc": "Returns the layout instance currently associated with this Container.\nIf a layout has not been instantiated yet, that..." - }, - { - "tagname": "method", - "name": "getLoader", - "member": "Ext.AbstractComponent", - "doc": "

Gets the Ext.ComponentLoader for this Component.

\n", - "params": [ - - ], - "return": { - "type": "Ext.ComponentLoader", - "doc": "

The loader instance, null if it doesn't exist.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2587, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getLoader", - "shortDoc": "

Gets the Ext.ComponentLoader for this Component.

\n" - }, - { - "tagname": "method", - "name": "getPlugin", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "Object", - "name": "pluginId", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "Ext.AbstractPlugin", - "doc": "

pluginInstance

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2715, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getPlugin", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "getPosition", - "member": "Ext.Component", - "doc": "

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

\n", - "params": [ - { - "type": "Boolean", - "name": "local", - "doc": "

(optional) If true the element's left and top are returned instead of page XY (defaults to false)

\n", - "optional": true - } - ], - "return": { + "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": "Panel2.html#Ext-panel-Panel-cfg-buttonAlign", + "shortDoc": "The alignment of any buttons added to this panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "buttonAlign", + "owner": "Ext.panel.Panel", + "doc": "

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

\n\n\n

NOTE: The newer way to specify toolbars is to use the dockedItems config, and\ninstead of buttonAlign you would add the layout: { pack: 'start' | 'center' | 'end' }\noption to the dockedItem config.

\n\n", + "linenr": 508, + "html_filename": "Panel2.html" + }, + { + "type": "Object/Array", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-buttons", + "shortDoc": "Convenience method used for adding buttons docked to the bottom of the panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "buttons", + "owner": "Ext.panel.Panel", + "doc": "

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

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

is equivalent to

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

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

\n", + "linenr": 569, + "html_filename": "Panel2.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-closable", + "shortDoc": "True to display the 'close' tool button and allow the user to close the window, false to\nhide the button and disallow...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "closable", + "owner": "Ext.panel.Panel", + "doc": "

True to display the 'close' tool button and allow the user to close the window, false to\nhide the button and disallow closing the window (defaults to false).

\n\n\n

By default, when close is requested by clicking the close button in the header, the close\nmethod will be called. This will destroy the Panel and its content\nmeaning that it may not be reused.

\n\n\n

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

\n\n", + "linenr": 209, + "html_filename": "Panel2.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-closeAction", + "shortDoc": "The action to take when the close header tool is clicked:\n\n'destroy' : Default\nremove the window from the DOM and des...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "closeAction", + "owner": "Ext.panel.Panel", + "doc": "

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

\n

Note: This behavior has changed! setting *does* affect the close method\nwhich will invoke the approriate closeAction.\n\n", + "linenr": 221, + "html_filename": "Panel2.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": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-collapseDirection", + "shortDoc": "The direction to collapse the Panel when the toggle button is clicked. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "collapseDirection", + "owner": "Ext.panel.Panel", + "doc": "

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

\n\n\n

Defaults to the headerPosition

\n\n\n

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

\n\n\n

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

\n\n", + "linenr": 201, + "html_filename": "Panel2.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-collapseFirst", + "shortDoc": "true to make sure the collapse/expand toggle button always renders first (to the left of)\nany other tools in the pane...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "collapseFirst", + "owner": "Ext.panel.Panel", + "doc": "

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

\n", + "linenr": 134, + "html_filename": "Panel2.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-collapseMode", + "shortDoc": "Important: this config is only effective for collapsible Panels which are direct child items of a border layout. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "collapseMode", + "owner": "Ext.panel.Panel", + "doc": "

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

\n\n\n

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

\n\n\n

When a child item of a border layout, this config has two options:\n

\n\n", + "linenr": 156, + "html_filename": "Panel2.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-collapsed", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "collapsed", + "owner": "Ext.panel.Panel", + "doc": "

true to render the panel collapsed, false to render it expanded (defaults to\nfalse).

\n", + "linenr": 127, + "html_filename": "Panel2.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-collapsedCls", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "collapsedCls", + "owner": "Ext.panel.Panel", + "doc": "

A CSS class to add to the panel's element after it has been collapsed (defaults to\n'collapsed').

\n", + "linenr": 102, + "html_filename": "Panel2.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-collapsible", + "shortDoc": "True to make the panel collapsible and have an expand/collapse toggle Tool added into\nthe header tool button area. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "collapsible", + "owner": "Ext.panel.Panel", + "doc": "

True to make the panel collapsible and have an expand/collapse toggle Tool added into\nthe header tool button area. False to keep the panel sized either statically, or by an owning layout manager, with no toggle Tool (defaults to false).

\n\n\n

See collapseMode and collapseDirection

\n", + "linenr": 193, + "html_filename": "Panel2.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel4.html#Ext-grid-Panel-cfg-columnLines", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/Panel.js", + "private": false, + "name": "columnLines", + "owner": "Ext.grid.Panel", + "doc": "

Adds column line styling

\n", + "linenr": 346, + "html_filename": "Panel4.html" + }, + { "type": "Array", - "doc": "

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

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 603, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-getPosition", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "getSelectionModel", - "member": "Ext.panel.Table", - "doc": "

Returns the selection model being used and creates it via the configuration\nif it has not been created already.

\n", - "params": [ - - ], - "return": { - "type": "Ext.selection.Model", - "doc": "

selModel

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 1098, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-getSelectionModel", - "shortDoc": "

Returns the selection model being used and creates it via the configuration\nif it has not been created already.

\n" - }, - { - "tagname": "method", - "name": "getSize", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Table.html#Ext-panel-Table-cfg-columns", + "shortDoc": "An array of column definition objects which define all columns that appear in this grid. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "columns", + "owner": "Ext.panel.Table", + "doc": "

An array of column definition objects which define all columns that appear in this grid. Each\ncolumn definition provides the header text for the column, and a definition of where the data for that column comes from.

\n", + "linenr": 56, + "html_filename": "Table.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\n

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

\n\n\n

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

\n\n\n\n\n", + "linenr": 422, + "html_filename": "AbstractComponent.html" + }, + { "type": "Object", - "doc": "

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

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2563, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getSize", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "getSource", - "member": "Ext.grid.property.Grid", - "doc": "

Gets the source data object containing the property data. See setSource for details regarding the\nformat of the data object.

\n", - "params": [ - - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Grid.html#Ext-grid-property-Grid-cfg-customEditors", + "shortDoc": "An object containing name/value pairs of custom editor type definitions that allow\nthe grid to support additional typ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "name": "customEditors", + "owner": "Ext.grid.property.Grid", + "doc": "

An object containing name/value pairs of custom editor type definitions that allow\nthe grid to support additional types of editable fields. By default, the grid supports strongly-typed editing\nof strings, dates, numbers and booleans using built-in form editors, but any custom type can be supported and\nassociated with a custom input control by specifying a custom editor. The name of the editor\ntype should correspond with the name of the property that will use the editor. Example usage:

\n\n
var grid = new Ext.grid.property.Grid({\n\n    // Custom editors for certain property names\n    customEditors: {\n        evtStart: Ext.create('Ext.form.TimeField' {selectOnFocus:true})\n    },\n\n    // Displayed name for property names in the source\n    propertyNames: {\n        evtStart: 'Start Time'\n    },\n\n    // Data object containing properties to edit\n    source: {\n        evtStart: '10:00 AM'\n    }\n});\n
\n\n", + "linenr": 50, + "html_filename": "Grid.html" + }, + { "type": "Object", - "doc": "

The data object

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 315, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-method-getSource", - "shortDoc": "Gets the source data object containing the property data. See setSource for details regarding the\nformat of the data..." - }, - { - "tagname": "method", - "name": "getState", - "member": "Ext.state.Stateful", - "doc": "

Gets the current state of the object. By default this function returns null,\nit should be overridden in subclasses to implement methods for getting the state.

\n", - "params": [ - - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Grid.html#Ext-grid-property-Grid-cfg-customRenderers", + "shortDoc": "An object containing name/value pairs of custom renderer type definitions that allow\nthe grid to support custom rende...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "name": "customRenderers", + "owner": "Ext.grid.property.Grid", + "doc": "

An object containing name/value pairs of custom renderer type definitions that allow\nthe grid to support custom rendering of fields. By default, the grid supports strongly-typed rendering\nof strings, dates, numbers and booleans using built-in form editors, but any custom type can be supported and\nassociated with the type of the value. The name of the renderer type should correspond with the name of the property\nthat it will render. Example usage:

\n\n
var grid = Ext.create('Ext.grid.property.Grid', {\n    customRenderers: {\n        Available: function(v){\n            if (v) {\n                return 'Yes';\n            } else {\n                return 'No';\n            }\n        }\n    },\n    source: {\n        Available: true\n    }\n});\n
\n\n", + "linenr": 81, + "html_filename": "Grid.html" + }, + { + "type": "Mixed", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-data", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", + "private": false, + "name": "data", + "owner": "Ext.AbstractComponent", + "doc": "

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

\n", + "linenr": 260, + "html_filename": "AbstractComponent.html" + }, + { "type": "Object", - "doc": "

The current state

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 216, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-method-getState", - "shortDoc": "Gets the current state of the object. By default this function returns null,\nit should be overridden in subclasses to..." - }, - { - "tagname": "method", - "name": "getStateId", - "member": "Ext.state.Stateful", - "doc": "

Gets the state id for this object.

\n", - "params": [ - - ], - "return": { - "type": "String", - "doc": "

The state id, null if not found.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 237, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-method-getStateId", - "shortDoc": "

Gets the state id for this object.

\n" - }, - { - "tagname": "method", - "name": "getStore", - "member": "Ext.panel.Table", - "doc": "

Returns the store associated with this Panel.

\n", - "params": [ - - ], - "return": { - "type": "Ext.data.Store", - "doc": "

The store

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 608, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-getStore", - "shortDoc": "

Returns the store associated with this Panel.

\n" - }, - { - "tagname": "method", - "name": "getView", - "member": "Ext.panel.Table", - "doc": "

Gets the view for this panel.

\n", - "params": [ - - ], - "return": { - "type": "Ext.view.Table", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 616, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-getView", - "shortDoc": "

Gets the view for this panel.

\n" - }, - { - "tagname": "method", - "name": "getWidth", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - - ], - "return": { - "type": "Number", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2571, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getWidth", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "getXType", - "member": "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\n
var t = new Ext.form.field.Text();\nalert(t.getXType());  // alerts 'textfield'\n
\n\n", - "params": [ - - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-defaultDockWeights", + "shortDoc": "This object holds the default weights applied to dockedItems that have no weight. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "name": "defaultDockWeights", + "owner": "Ext.panel.AbstractPanel", + "doc": "

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

\n\n

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

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

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

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

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

\n\n
initComponent: function () {\n    // NOTE: Don't change members of defaultDockWeights since the object is shared.\n    this.defaultDockWeights = Ext.applyIf({ top: 10 }, this.defaultDockWeights);\n\n    this.callParent();\n}
\n\n", + "linenr": 64, + "html_filename": "AbstractPanel.html" + }, + { "type": "String", - "doc": "

The xtype

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 962, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-getXType", - "shortDoc": "Gets the xtype for this component as registered with Ext.ComponentManager. For a list of all\navailable xtypes, see th..." - }, - { - "tagname": "method", - "name": "getXTypes", - "member": "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\n

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

\n\n\n

Example usage:

\n\n\n
var t = new Ext.form.field.Text();\nalert(t.getXTypes());  // alerts 'component/field/textfield'\n
\n\n", - "params": [ - - ], - "return": { + "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\n

Defaults to 'panel'.

\n\n", + "linenr": 168, + "html_filename": "AbstractContainer2.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\n

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

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

\n\n\n

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

\n\n\n

Usage:

\n\n\n
defaults: {               // 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": "Table.html#Ext-panel-Table-cfg-deferRowRender", + "shortDoc": "Defaults to true to enable deferred row rendering. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "deferRowRender", + "owner": "Ext.panel.Table", + "doc": "

Defaults to true to enable deferred row rendering.

\n\n\n

This allows the GridView to execute a refresh quickly, with the expensive update of the row\nstructure deferred so that layouts with GridPanels appear, and lay out more quickly.

\n\n", + "linenr": 73, + "html_filename": "Table.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", - "doc": "

The xtype hierarchy string

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1938, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-getXTypes", - "shortDoc": "Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all\navailable xtypes, see the Ext..." - }, - { - "tagname": "method", - "name": "hasActiveFx", - "member": "Ext.util.Animate", - "doc": "

@deprecated 4.0 Replaced by getActiveAnimation\nReturns thq current animation if this object has any effects actively running or queued, else returns false.

\n", - "params": [ - - ], - "return": { + "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": "Object/Array", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-dockedItems", + "shortDoc": "A component or series of components to be added as docked items to this panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "dockedItems", + "owner": "Ext.panel.Panel", + "doc": "

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

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

\n", + "linenr": 240, + "html_filename": "Panel2.html" + }, + { "type": "Mixed", - "doc": "

anim if element has active effects, else false

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js", - "linenr": 369, - "html_filename": "Animate.html", - "href": "Animate.html#Ext-util-Animate-method-hasActiveFx", - "shortDoc": "@deprecated 4.0 Replaced by getActiveAnimation\nReturns thq current animation if this object has any effects actively ..." - }, - { - "tagname": "method", - "name": "hasListener", - "member": "Ext.util.Observable", - "doc": "

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

\n", - "params": [ - { - "type": "String", - "name": "eventName", - "doc": "

The name of the event to check for

\n", - "optional": false - } - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Component2.html#Ext-Component-cfg-draggable", + "shortDoc": "Specify as true to make a floating Component draggable using the Component's encapsulating element as the drag handle. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", + "private": false, + "name": "draggable", + "owner": "Ext.Component", + "doc": "

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

\n\n\n

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

\n\n\n

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

\n\n\n

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

\n", + "linenr": 237, + "html_filename": "Component2.html" + }, + { "type": "Boolean", - "doc": "

True if the event is being listened for, else false

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 480, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-hasListener", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "hasUICls", - "member": "Ext.AbstractComponent", - "doc": "

Checks if there is currently a specified uiCls

\n", - "params": [ - { - "type": "String", - "name": "cls", - "doc": "

The cls to check

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1389, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-hasUICls", - "shortDoc": "

Checks if there is currently a specified uiCls

\n" - }, - { - "tagname": "method", - "name": "hide", - "member": "Ext.Component", - "doc": "

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

\n", - "params": [ - { - "type": "String/Element/Component", - "name": "animateTarget", - "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)

\n", - "optional": false - }, - { - "type": "Function", - "name": "callback", - "doc": "

(optional) A callback function to call after the Component is hidden.

\n", - "optional": true - }, - { - "type": "Object", - "name": "scope", - "doc": "

(optional) The scope (this reference) in which the callback is executed. Defaults to this Component.

\n", - "optional": true - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 748, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-hide", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "hideHorizontalScroller", - "member": "Ext.panel.Table", - "doc": "

Hide the verticalScroller and remove the horizontalScrollerPresentCls.

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 785, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-hideHorizontalScroller", - "shortDoc": "

Hide the verticalScroller and remove the horizontalScrollerPresentCls.

\n" - }, - { - "tagname": "method", - "name": "hideVerticalScroller", - "member": "Ext.panel.Table", - "doc": "

Hide the verticalScroller and remove the verticalScrollerPresentCls.

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 818, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-hideVerticalScroller", - "shortDoc": "

Hide the verticalScroller and remove the verticalScrollerPresentCls.

\n" - }, - { - "tagname": "method", - "name": "insert", - "member": "Ext.container.AbstractContainer", - "doc": "

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", - "params": [ - { - "type": "Number", - "name": "index", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Ext.Component", - "name": "component", - "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.

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

component The Component (or config object) that was\ninserted with the Container's default config values applied.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 547, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-insert", - "shortDoc": "Inserts a Component into this Container at a specified index. Fires the\nbeforeadd event before inserting, then fires ..." - }, - { - "tagname": "method", - "name": "insertDocked", - "member": "Ext.panel.AbstractPanel", - "doc": "

Inserts docked item(s) to the panel at the indicated position.

\n", - "params": [ - { - "type": "Number", - "name": "pos", - "doc": "

The index at which the Component will be inserted

\n", - "optional": false - }, - { - "type": "Object/Array", - "name": "component", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 278, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-insertDocked", - "shortDoc": "

Inserts docked item(s) to the panel at the indicated position.

\n" - }, - { - "tagname": "method", - "name": "invalidateScroller", - "member": "Ext.panel.Table", - "doc": "

Invalides scrollers that are present and forces a recalculation.\n(Not related to showing/hiding the scrollers)

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 858, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-invalidateScroller", - "shortDoc": "

Invalides scrollers that are present and forces a recalculation.\n(Not related to showing/hiding the scrollers)

\n" - }, - { - "tagname": "method", - "name": "is", - "member": "Ext.AbstractComponent", - "doc": "

Tests whether this Component matches the selector string.

\n", - "params": [ - { - "type": "String", - "name": "selector", - "doc": "

The selector string to test against.

\n", - "optional": false - } - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Table.html#Ext-panel-Table-cfg-enableColumnHide", + "shortDoc": "Defaults to true. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "enableColumnHide", + "owner": "Ext.panel.Table", + "doc": "

Defaults to true. Set to false to disable column hiding within this grid.

\n", + "linenr": 110, + "html_filename": "Table.html" + }, + { "type": "Boolean", - "doc": "

True if this Component matches the selector.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1719, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-is", - "shortDoc": "

Tests whether this Component matches the selector string.

\n" - }, - { - "tagname": "method", - "name": "isDescendantOf", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "Ext.Container", - "name": "container", - "doc": "\n", - "optional": false - } - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Table.html#Ext-panel-Table-cfg-enableColumnMove", + "shortDoc": "Defaults to true. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "enableColumnMove", + "owner": "Ext.panel.Table", + "doc": "

Defaults to true. Set to false to disable column dragging within this grid.

\n", + "linenr": 98, + "html_filename": "Table.html" + }, + { "type": "Boolean", - "doc": "

isDescendant

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2731, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDescendantOf", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "isDisabled", - "member": "Ext.AbstractComponent", - "doc": "

Method to determine whether this Component is currently disabled.

\n", - "params": [ - - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Table.html#Ext-panel-Table-cfg-enableColumnResize", + "shortDoc": "Defaults to true. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "enableColumnResize", + "owner": "Ext.panel.Table", + "doc": "

Defaults to true. Set to false to disable column resizing within this grid.

\n", + "linenr": 104, + "html_filename": "Table.html" + }, + { + "type": "Object/Array", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-fbar", + "shortDoc": "Convenience method used for adding items to the bottom of the panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "fbar", + "owner": "Ext.panel.Panel", + "doc": "

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

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

is equivalent to

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

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

\n", + "linenr": 602, + "html_filename": "Panel2.html" + }, + { "type": "Boolean", - "doc": "

the disabled state of this Component.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2115, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDisabled", - "shortDoc": "

Method to determine whether this Component is currently disabled.

\n" - }, - { - "tagname": "method", - "name": "isDraggable", - "member": "Ext.AbstractComponent", - "doc": "

Method to determine whether this Component is draggable.

\n", - "params": [ - - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-floatable", + "shortDoc": "Important: This config is only effective for collapsible Panels which are direct child items of a border layout. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "floatable", + "owner": "Ext.panel.Panel", + "doc": "

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

\n\n\n

true to allow clicking a collapsed Panel's placeholder to display the Panel floated\nabove the layout, false to force the user to fully expand a collapsed region by\nclicking the expand button to see it again (defaults to true).

\n", + "linenr": 178, + "html_filename": "Panel2.html" + }, + { "type": "Boolean", - "doc": "

the draggable state of this component.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2292, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDraggable", - "shortDoc": "

Method to determine whether this Component is draggable.

\n" - }, - { - "tagname": "method", - "name": "isDroppable", - "member": "Ext.AbstractComponent", - "doc": "

Method to determine whether this Component is droppable.

\n", - "params": [ - - ], - "return": { + "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\n

Components such as Windows and Menus are floating\nby default.

\n\n\n

Floating Components that are programatically rendered will register themselves with the global\nZIndexManager

\n\n\n

Floating Components as child items of a Container

\n\n\n

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

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

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

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

\n\n\n

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

\n\n\n

After 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", - "doc": "

the droppable state of this component.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2300, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDroppable", - "shortDoc": "

Method to determine whether this Component is droppable.

\n" - }, - { - "tagname": "method", - "name": "isFloating", - "member": "Ext.AbstractComponent", - "doc": "

Method to determine whether this Component is floating.

\n", - "params": [ - - ], - "return": { + "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", - "doc": "

the floating state of this component.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2284, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isFloating", - "shortDoc": "

Method to determine whether this Component is floating.

\n" - }, - { - "tagname": "method", - "name": "isHidden", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Table.html#Ext-panel-Table-cfg-forceFit", + "shortDoc": "Specify as true to force the columns to fit into the available width. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "forceFit", + "owner": "Ext.panel.Table", + "doc": "

Specify as true to force the columns to fit into the available width. Headers are first sized according to configuration, whether that be\na specific width, or flex. Then they are all proportionally changed in width so that the entire content width is used..

\n", + "linenr": 62, + "html_filename": "Table.html" + }, + { "type": "Boolean", - "doc": "

the hidden state of this Component.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2131, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isHidden", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "isVisible", - "member": "Ext.AbstractComponent", - "doc": "

Returns true if this component is visible.

\n", - "params": [ - { - "type": "Boolean", - "name": "deep", - "doc": "

.

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

\n\n

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

\n\n", - "optional": false - } - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-frame", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "frame", + "owner": "Ext.panel.Panel", + "doc": "

True to apply a frame to the panel.

\n", + "linenr": 267, + "html_filename": "Panel2.html" + }, + { "type": "Boolean", - "doc": "

True if this component is visible, false otherwise.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2015, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isVisible", - "shortDoc": "

Returns true if this component is visible.

\n" - }, - { - "tagname": "method", - "name": "isXType", - "member": "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\n

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

\n\n\n

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

\n\n\n

Example usage:

\n\n\n
var t = new Ext.form.field.Text();\nvar isText = t.isXType('textfield');        // true\nvar isBoxSubclass = t.isXType('field');       // true, descended from Ext.form.field.Base\nvar isBoxInstance = t.isXType('field', true); // false, not a direct Ext.form.field.Base instance\n
\n\n", - "params": [ - { - "type": "String", - "name": "xtype", - "doc": "

The xtype to check for this Component

\n", - "optional": false - }, - { - "type": "Boolean", - "name": "shallow", - "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", - "optional": true - } - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-frameHeader", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "frameHeader", + "owner": "Ext.panel.Panel", + "doc": "

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

\n", + "linenr": 273, + "html_filename": "Panel2.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-headerPosition", + "shortDoc": "Specify as 'top', 'bottom', 'left' or 'right'. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "headerPosition", + "owner": "Ext.panel.Panel", + "doc": "

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

\n", + "linenr": 262, + "html_filename": "Panel2.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", - "doc": "

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

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1907, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-isXType", - "shortDoc": "Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended\nfrom th..." - }, - { - "tagname": "method", - "name": "move", - "member": "Ext.container.AbstractContainer", - "doc": "

Moves a Component within the Container

\n", - "params": [ - { - "type": "Number", - "name": "fromIdx", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Number", - "name": "toIdx", - "doc": "

The new index for the Component.

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

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

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 569, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-move", - "shortDoc": "

Moves a Component within the Container

\n" - }, - { - "tagname": "method", - "name": "nextNode", - "member": "Ext.AbstractComponent", - "doc": "

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

\n\n\n

Note 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 pnextSibling.

\n\n", - "params": [ - { - "type": "String", - "name": "selector", - "doc": "

Optional A ComponentQuery selector to filter the following nodes.

\n", - "optional": false - }, - { - "type": "Object", - "name": "includeSelf", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "

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

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1845, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-nextNode", - "shortDoc": "Returns the next node in the Component tree in tree traversal order.\n\n\nNote that this is not limited to siblings, and..." - }, - { - "tagname": "method", - "name": "nextSibling", - "member": "Ext.AbstractComponent", - "doc": "

Returns the next sibling of this Component.

\n\n\n

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

\n\n\n

May also be refered to as next()

\n\n\n

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

\n\n", - "params": [ - { - "type": "String", - "name": "selector", - "doc": "

Optional A ComponentQuery selector to filter the following items.

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "

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

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1749, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-nextSibling", - "shortDoc": "Returns the next sibling of this Component.\n\n\nOptionally selects the next sibling which matches the passed ComponentQ..." - }, - { - "tagname": "method", - "name": "observe", - "member": "Ext.util.Observable", - "doc": "

Sets observability on the passed class constructor.

\n\n

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

Usage:

\n\n
Ext.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", - "params": [ - { - "type": "Function", - "name": "c", - "doc": "

The class constructor to make observable.

\n", - "optional": false - }, - { - "type": "Object", - "name": "listeners", - "doc": "

An object containing a series of listeners to add. See addListener.

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": true, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 69, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-observe", - "shortDoc": "Sets observability on the passed class constructor.\n\nThis makes any event fired on any instance of the passed class a..." - }, - { - "tagname": "method", - "name": "on", - "member": "Ext.util.Observable", - "doc": "

Appends an event handler to this object (shorthand for addListener.)

\n", - "params": [ - { - "type": "String", - "name": "eventName", - "doc": "

The type of event to listen for

\n", - "optional": false - }, - { - "type": "Function", - "name": "handler", - "doc": "

The method the event invokes

\n", - "optional": false - }, - { - "type": "Object", - "name": "scope", - "doc": "

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

\n", - "optional": true - }, - { - "type": "Object", - "name": "options", - "doc": "

(optional) An object containing handler configuration.

\n", - "optional": true - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 616, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-on", - "shortDoc": "

Appends an event handler to this object (shorthand for addListener.)

\n" - }, - { - "tagname": "method", - "name": "previousNode", - "member": "Ext.AbstractComponent", - "doc": "

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

\n\n\n

Note 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", - "params": [ - { - "type": "String", - "name": "selector", - "doc": "

Optional. A ComponentQuery selector to filter the preceding nodes.

\n", - "optional": false - }, - { - "type": "Object", - "name": "includeSelf", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "

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

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1809, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-previousNode", - "shortDoc": "Returns the previous node in the Component tree in tree traversal order.\n\n\nNote that this is not limited to siblings,..." - }, - { - "tagname": "method", - "name": "previousSibling", - "member": "Ext.AbstractComponent", - "doc": "

Returns the previous sibling of this Component.

\n\n\n

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

\n\n\n

May also be refered to as prev()

\n\n\n

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

\n\n", - "params": [ - { - "type": "String", - "name": "selector", - "doc": "

Optional. A ComponentQuery selector to filter the preceding items.

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "

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

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1779, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-previousSibling", - "shortDoc": "Returns the previous sibling of this Component.\n\n\nOptionally selects the previous sibling which matches the passed Co..." - }, - { - "tagname": "method", - "name": "query", - "member": "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", - "params": [ - { - "type": "String", - "name": "selector", - "doc": "

Selector complying to an Ext.ComponentQuery selector

\n", - "optional": false - } - ], - "return": { + "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": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-hideCollapseTool", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "hideCollapseTool", + "owner": "Ext.panel.Panel", + "doc": "

true to hide the expand/collapse toggle button when collapsible == true,\nfalse to display it (defaults to false).

\n", + "linenr": 141, + "html_filename": "Panel2.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Table.html#Ext-panel-Table-cfg-hideHeaders", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "hideHeaders", + "owner": "Ext.panel.Table", + "doc": "

Specify as true to hide the headers.

\n", + "linenr": 68, + "html_filename": "Table.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

\nDefaults to 'display'.

\n", + "linenr": 409, + "html_filename": "AbstractComponent.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\n

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

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

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

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

\n\n\n

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

\n\n", + "linenr": 50, + "html_filename": "AbstractComponent.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-itemId", + "shortDoc": "An itemId can be used as an alternative way to get a reference to a component\nwhen no object reference is available. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", + "private": false, + "name": "itemId", + "owner": "Ext.AbstractComponent", + "doc": "

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.

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

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

\n\n\n

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

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

\n

Example:

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

Each item may be:

\n\n

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

\n

Every Component class has its own xtype.

\n

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

\n

Notes:

\n

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

\n

Do not specify contentEl or \nhtml with items.

\n\n", + "linenr": 94, + "html_filename": "AbstractContainer2.html" + }, + { + "type": "String/Object", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractContainer2.html#Ext-container-AbstractContainer-cfg-layout", + "shortDoc": "*Important: In order for child items to be correctly sized and\npositioned, typically a layout manager must be specifi...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", + "private": false, + "name": "layout", + "owner": "Ext.container.AbstractContainer", + "doc": "

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

\n\n\n

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

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

\n\n\n

layout may be specified as either as an Object or\n\n\n

as a String:

\n", + "linenr": 20, + "html_filename": "AbstractContainer2.html" + }, + { + "type": "Object/Array", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-lbar", + "shortDoc": "Convenience method. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "lbar", + "owner": "Ext.panel.Panel", + "doc": "

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

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

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'left',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n", + "linenr": 650, + "html_filename": "Panel2.html" + }, + { + "type": "Object", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Observable.html#Ext-util-Observable-cfg-listeners", + "shortDoc": "A config object containing one or more event handlers to be added to this object during initialization. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js", + "private": false, + "name": "listeners", + "owner": "Ext.util.Observable", + "doc": "

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

\n\n

DOM events from ExtJS Components

\n\n

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

\n\n
new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n
\n", + "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\n

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

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

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

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

\n\n", + "linenr": 477, + "html_filename": "AbstractComponent.html" + }, + { + "type": "Number", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-minButtonWidth", + "shortDoc": "Minimum width of all footer toolbar buttons in pixels (defaults to 75). ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "minButtonWidth", + "owner": "Ext.panel.Panel", + "doc": "

Minimum width of all footer toolbar buttons in pixels (defaults to 75). If set, this will\nbe used as the default value for the Ext.button.Button.minWidth config of\neach Button added to the footer toolbar via the fbar or buttons configurations.\nIt will be ignored for buttons that have a minWidth configured some other way, e.g. in their own config\nobject or via the defaults of their parent container.

\n", + "linenr": 117, + "html_filename": "Panel2.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\n

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

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

\n\n", + "linenr": 467, + "html_filename": "AbstractComponent.html" + }, + { + "type": "Number", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Grid.html#Ext-grid-property-Grid-cfg-nameColumnWidth", + "shortDoc": "Optional. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "name": "nameColumnWidth", + "owner": "Ext.grid.property.Grid", + "doc": "

Optional. Specify the width for the name column. The value column will take any remaining space. Defaults to 115.

\n", + "linenr": 119, + "html_filename": "Grid.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Grid.html#Ext-grid-property-Grid-cfg-nameField", + "shortDoc": "Optional. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "name": "nameField", + "owner": "Ext.grid.property.Grid", + "doc": "

Optional. The name of the field from the property store to use as the property field name. Defaults to 'name'\nThis may be useful if you do not configure the property Grid from an object, but use your own store configuration.

\n", + "linenr": 112, + "html_filename": "Grid.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": "Mixed", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-overlapHeader", + "shortDoc": "True to overlap the header in a panel over the framing of the panel itself. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "overlapHeader", + "owner": "Ext.panel.Panel", + "doc": "

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

\n", + "linenr": 187, + "html_filename": "Panel2.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": "Mixed", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-placeholder", + "shortDoc": "Important: This config is only effective for collapsible Panels which are direct child items of a border layout\nwhen ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "placeholder", + "owner": "Ext.panel.Panel", + "doc": "

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

\n\n\n

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

\n\n", + "linenr": 169, + "html_filename": "Panel2.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": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-preventHeader", + "shortDoc": "Prevent a Header from being created and shown. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "preventHeader", + "owner": "Ext.panel.Panel", + "doc": "

Prevent a Header from being created and shown. Defaults to false.

\n", + "linenr": 257, + "html_filename": "Panel2.html" + }, + { + "type": "Object", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Grid.html#Ext-grid-property-Grid-cfg-propertyNames", + "shortDoc": "An object containing custom property name/display name pairs. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "name": "propertyNames", + "owner": "Ext.grid.property.Grid", + "doc": "

An object containing custom property name/display name pairs.\nIf specified, the display name will be shown in the name column instead of the property name.

\n", + "linenr": 41, + "html_filename": "Grid.html" + }, + { + "type": "Object/Array", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-rbar", + "shortDoc": "Convenience method. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "rbar", + "owner": "Ext.panel.Panel", + "doc": "

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

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

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'right',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n", + "linenr": 676, + "html_filename": "Panel2.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\n

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

\n\n

For example, a Component which rendered an image, and description into its element might use the following properties\ncoded into its prototype:

\n\n
renderTpl: '&lt;img src=\"{imageUrl}\" class=\"x-image-component-img\">&lt;div class=\"x-image-component-desc\">{description}&gt;/div&lt;',\n\nrenderSelectors: {\n    image: 'img.x-image-component-img',\n    descEl: 'div.x-image-component-desc'\n}\n
\n\n

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

\n", + "linenr": 179, + "html_filename": "AbstractComponent.html" + }, + { + "type": "Mixed", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderTo", + "shortDoc": "Specify the id of the element, a DOM element or an existing Element that this component\nwill be rendered into. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", + "private": false, + "name": "renderTo", + "owner": "Ext.AbstractComponent", + "doc": "

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

\n\n\n
\n\n\n

See render also.

\n\n", + "linenr": 204, + "html_filename": "AbstractComponent.html" + }, + { + "type": "Mixed", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderTpl", + "shortDoc": "An XTemplate used to create the internal structure inside this Component's\nencapsulating Element. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", + "private": false, + "name": "renderTpl", + "owner": "Ext.AbstractComponent", + "doc": "

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

\n\n\n

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

\n\n\n

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

\n\n\n

Upon 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": "Mixed", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Component2.html#Ext-Component-cfg-resizable", + "shortDoc": "Specify as true to apply a Resizer to this Component\nafter rendering. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", + "private": false, + "name": "resizable", + "owner": "Ext.Component", + "doc": "

Specify as true to apply a Resizer to this Component\nafter rendering.

\n\n\n

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

\n\n", + "linenr": 157, + "html_filename": "Component2.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": "Table.html#Ext-panel-Table-cfg-scroll", + "shortDoc": "Valid values are 'both', 'horizontal' or 'vertical'. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "scroll", + "owner": "Ext.panel.Table", + "doc": "

Valid values are 'both', 'horizontal' or 'vertical'. true implies 'both'. false implies 'none'.\nDefaults to true.

\n", + "linenr": 49, + "html_filename": "Table.html" + }, + { + "type": "Number", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Table.html#Ext-panel-Table-cfg-scrollDelta", + "shortDoc": "Number of pixels to scroll when scrolling with mousewheel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "scrollDelta", + "owner": "Ext.panel.Table", + "doc": "

Number of pixels to scroll when scrolling with mousewheel.\nDefaults to 40.

\n", + "linenr": 42, + "html_filename": "Table.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": "Table.html#Ext-panel-Table-cfg-sortableColumns", + "shortDoc": "Defaults to true. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "sortableColumns", + "owner": "Ext.panel.Table", + "doc": "

Defaults to true. Set to false to disable column sorting via clicking the\nheader and via the Sorting menu items.

\n", + "linenr": 79, + "html_filename": "Table.html" + }, + { + "type": "Object", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Grid.html#Ext-grid-property-Grid-cfg-source", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "name": "source", + "owner": "Ext.grid.property.Grid", + "doc": "

A data object to use as the data source of the grid (see setSource for details).

\n", + "linenr": 77, + "html_filename": "Grid.html" + }, + { "type": "Array", - "doc": "

Ext.Component's which matched the selector

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 772, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-query", - "shortDoc": "Retrieves all descendant components which match the passed selector.\nExecutes an Ext.ComponentQuery.query using this ..." - }, - { - "tagname": "method", - "name": "relayEvents", - "member": "Ext.util.Observable", - "doc": "

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

\n", - "params": [ - { - "type": "Object", - "name": "origin", - "doc": "

The Observable whose events this object is to relay.

\n", - "optional": false - }, - { - "type": "Array", - "name": "events", - "doc": "

Array of event names to relay.

\n", - "optional": false - }, - { - "type": "Object", - "name": "prefix", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 520, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-relayEvents", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "releaseCapture", - "member": "Ext.util.Observable", - "doc": "

Removes all added captures from the Observable.

\n", - "params": [ - { - "type": "Observable", - "name": "o", - "doc": "

The Observable to release

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": true, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 46, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-releaseCapture", - "shortDoc": "

Removes all added captures from the Observable.

\n" - }, - { - "tagname": "method", - "name": "remove", - "member": "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", - "params": [ - { - "type": "Component/String", - "name": "component", - "doc": "

The component reference or id to remove.

\n", - "optional": false - }, - { - "type": "Boolean", - "name": "autoDestroy", - "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", - "optional": true - } - ], - "return": { - "type": "Ext.Component", - "doc": "

component The Component that was removed.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 600, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-remove", - "shortDoc": "Removes a component from this container. Fires the beforeremove event before removing, then fires\nthe remove event a..." - }, - { - "tagname": "method", - "name": "removeAll", - "member": "Ext.container.AbstractContainer", - "doc": "

Removes all components from this container.

\n", - "params": [ - { - "type": "Boolean", - "name": "autoDestroy", - "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", - "optional": true - } - ], - "return": { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Stateful.html#Ext-state-Stateful-cfg-stateEvents", + "shortDoc": "An array of events that, when fired, should trigger this object to\nsave its state (defaults to none). ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", + "private": false, + "name": "stateEvents", + "owner": "Ext.state.Stateful", + "doc": "

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

\n\n\n

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

\n\n", + "linenr": 64, + "html_filename": "Stateful.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Stateful.html#Ext-state-Stateful-cfg-stateId", + "shortDoc": "The unique id for this object to use for state management purposes. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/state/Stateful.js", + "private": false, + "name": "stateId", + "owner": "Ext.state.Stateful", + "doc": "

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

\n\n

See stateful for an explanation of saving and restoring state.

\n\n", + "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.

\n

To set the state provider for the current page:

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

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

\n

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

\n

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

.\n

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

\n

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

\n

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

\n\n", + "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": "Object/Array", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-tbar", + "shortDoc": "Convenience method. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "tbar", + "owner": "Ext.panel.Panel", + "doc": "

Convenience method. Short for 'Top Bar'.

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

is equivalent to

\n\n
dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'top',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n
\n", + "linenr": 517, + "html_filename": "Panel2.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-title", + "shortDoc": "The title text to be used to display in the panel header (defaults to ''). ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "title", + "owner": "Ext.panel.Panel", + "doc": "

The title text to be used to display in the panel header (defaults to '').\nWhen a title is specified the Ext.panel.Header will automatically be created and displayed unless\npreventHeader is set to true.

\n", + "linenr": 307, + "html_filename": "Panel2.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-titleCollapse", + "shortDoc": "true to allow expanding and collapsing the panel (when collapsible = true)\nby clicking anywhere in the header bar, fa...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "titleCollapse", + "owner": "Ext.panel.Panel", + "doc": "

true to allow expanding and collapsing the panel (when collapsible = true)\nby clicking anywhere in the header bar, false) to allow it only by clicking to tool button\n(defaults to false)).

\n", + "linenr": 148, + "html_filename": "Panel2.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).

\n\n", + "linenr": 202, + "html_filename": "Component2.html" + }, + { "type": "Array", - "doc": "

Array of the destroyed components

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 653, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-removeAll", - "shortDoc": "

Removes all components from this container.

\n" - }, - { - "tagname": "method", - "name": "removeCls", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "Object", - "name": "className", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

Returns the Component to allow method chaining.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2171, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeCls", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "removeClsWithUI", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "String/Array", - "name": "cls", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1368, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeClsWithUI", - "shortDoc": "Removes a cls to the uiCls array, which will also call removeUIClsToElement and removes\nit from all elements of this ..." - }, - { - "tagname": "method", - "name": "removeDocked", - "member": "Ext.panel.AbstractPanel", - "doc": "

Removes the docked item from the panel.

\n", - "params": [ - { - "type": "Ext.Component", - "name": "item", - "doc": "

. The Component to remove.

\n", - "optional": false - }, - { - "type": "Boolean", - "name": "autoDestroy", - "doc": "

(optional) Destroy the component after removal.

\n", - "optional": true - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 289, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-removeDocked", - "shortDoc": "

Removes the docked item from the panel.

\n" - }, - { - "tagname": "method", - "name": "removeListener", - "member": "Ext.util.Observable", - "doc": "

Removes an event handler.

\n", - "params": [ - { - "type": "String", - "name": "eventName", - "doc": "

The type of event the handler was associated with.

\n", - "optional": false - }, - { - "type": "Function", - "name": "handler", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Object", - "name": "scope", - "doc": "

(optional) The scope originally specified for the handler.

\n", - "optional": true - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 352, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-removeListener", - "shortDoc": "

Removes an event handler.

\n" - }, - { - "tagname": "method", - "name": "removeManagedListener", - "member": "Ext.util.Observable", - "doc": "

Removes listeners that were added by the mon method.

\n", - "params": [ - { - "type": "Observable|Element", - "name": "item", - "doc": "

The item from which to remove a listener/listeners.

\n", - "optional": false - }, - { - "type": "Object|String", - "name": "ename", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Function", - "name": "fn", - "doc": "

Optional. If the ename parameter was an event name, this\nis the handler function.

\n", - "optional": false - }, - { - "type": "Object", - "name": "scope", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 196, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-removeManagedListener", - "shortDoc": "

Removes listeners that were added by the mon method.

\n" - }, - { - "tagname": "method", - "name": "removeProperty", - "member": "Ext.grid.property.Grid", - "doc": "

Removes a property from the grid.

\n", - "params": [ - { - "type": "String", - "name": "prop", - "doc": "

The name of the property to remove

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 334, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-method-removeProperty", - "shortDoc": "

Removes a property from the grid.

\n" - }, - { - "tagname": "method", - "name": "resumeEvents", - "member": "Ext.util.Observable", - "doc": "

Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevents fired during event suspension will be sent to any listeners now.

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 502, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-resumeEvents", - "shortDoc": "Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevent..." - }, - { - "tagname": "method", - "name": "scrollByDeltaX", - "member": "Ext.panel.Table", - "doc": "

Scrolls the TablePanel by deltaX

\n", - "params": [ - { - "type": "Number", - "name": "deltaY", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 1060, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-scrollByDeltaX", - "shortDoc": "

Scrolls the TablePanel by deltaX

\n" - }, - { - "tagname": "method", - "name": "scrollByDeltaY", - "member": "Ext.panel.Table", - "doc": "

Scrolls the TablePanel by deltaY

\n", - "params": [ - { - "type": "Number", - "name": "deltaY", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 1046, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-scrollByDeltaY", - "shortDoc": "

Scrolls the TablePanel by deltaY

\n" - }, - { - "tagname": "method", - "name": "sequenceFx", - "member": "Ext.util.Animate", - "doc": "

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

\n", - "params": [ - - ], - "return": { - "type": "Object", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js", - "linenr": 357, - "html_filename": "Animate.html", - "href": "Animate.html#Ext-util-Animate-method-sequenceFx", - "shortDoc": "Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence. This is the opposite ..." - }, - { - "tagname": "method", - "name": "setActive", - "member": "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\n

If a Window is superceded by another Window, deactivating it hides its shadow.

\n\n\n

This method also fires the activate or deactivate event depending on which action occurred.

\n\n", - "params": [ - { - "type": "Boolean", - "name": "active", - "doc": "

True to activate the Component, false to deactivate it (defaults to false)

\n", - "optional": false - }, - { - "type": "Component", - "name": "newActive", - "doc": "

The newly active Component which is taking over topmost zIndex position.

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js", - "linenr": 216, - "html_filename": "Floating.html", - "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..." - }, - { - "tagname": "method", - "name": "setAutoScroll", - "member": "Ext.Component", - "doc": "

Sets the overflow on the content element of the component.

\n", - "params": [ - { - "type": "Boolean", - "name": "scroll", - "doc": "

True to allow the Component to auto scroll.

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 359, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-setAutoScroll", - "shortDoc": "

Sets the overflow on the content element of the component.

\n" - }, - { - "tagname": "method", - "name": "setDisabled", - "member": "Ext.AbstractComponent", - "doc": "

Enable or disable the component.

\n", - "params": [ - { - "type": "Boolean", - "name": "disabled", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2123, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setDisabled", - "shortDoc": "

Enable or disable the component.

\n" - }, - { - "tagname": "method", - "name": "setDocked", - "member": "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", - "params": [ - { - "type": "Object", - "name": "dock", - "doc": "\n", - "optional": false - }, - { - "type": "Object", - "name": "layoutParent", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2646, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setDocked", - "shortDoc": "Sets the dock position of this component in its parent panel. Note that\nthis only has effect if this item is part of ..." - }, - { - "tagname": "method", - "name": "setHeight", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "Number", - "name": "height", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2550, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setHeight", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "setIconCls", - "member": "Ext.panel.Panel", - "doc": "

Set the iconCls for the panel's header. See Ext.panel.Header.iconCls.

\n", - "params": [ - { - "type": "String", - "name": "newIconCls", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 416, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-method-setIconCls", - "shortDoc": "

Set the iconCls for the panel's header. See Ext.panel.Header.iconCls.

\n" - }, - { - "tagname": "method", - "name": "setLoading", - "member": "Ext.AbstractComponent", - "doc": "

This method allows you to show or hide a LoadMask on top of this component.

\n", - "params": [ - { - "type": "Boolean/Object/String", - "name": "load", - "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", - "optional": false - }, - { - "type": "Boolean", - "name": "targetEl", - "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", - "optional": false - } - ], - "return": { - "type": "Ext.LoadMask", - "doc": "

The LoadMask instance that has just been shown.

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2611, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setLoading", - "shortDoc": "

This method allows you to show or hide a LoadMask on top of this component.

\n" - }, - { - "tagname": "method", - "name": "setPagePosition", - "member": "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", - "params": [ - { - "type": "Number", - "name": "x", - "doc": "

The new x position

\n", - "optional": false - }, - { - "type": "Number", - "name": "y", - "doc": "

The new y position

\n", - "optional": false - }, - { - "type": "Mixed", - "name": "animate", - "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", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 501, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-setPagePosition", - "shortDoc": "Sets the page XY position of the component. To set the left and top instead, use setPosition.\nThis method fires the ..." - }, - { - "tagname": "method", - "name": "setPosition", - "member": "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", - "params": [ - { - "type": "Number", - "name": "left", - "doc": "

The new left

\n", - "optional": false - }, - { - "type": "Number", - "name": "top", - "doc": "

The new top

\n", - "optional": false - }, - { - "type": "Mixed", - "name": "animate", - "doc": "

If true, the Component is animated into its new position. You may also pass an animation configuration.

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 417, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-setPosition", - "shortDoc": "Sets the left and top of the component. To set the page XY position instead, use setPagePosition.\nThis method fires ..." - }, - { - "tagname": "method", - "name": "setProperty", - "member": "Ext.grid.property.Grid", - "doc": "

Sets the value of a property.

\n", - "params": [ - { - "type": "String", - "name": "prop", - "doc": "

The name of the property to set

\n", - "optional": false - }, - { - "type": "Mixed", - "name": "value", - "doc": "

The value to test

\n", - "optional": false - }, - { - "type": "Boolean", - "name": "create", - "doc": "

(Optional) True to create the property if it doesn't already exist. Defaults to false.

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 324, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-method-setProperty", - "shortDoc": "

Sets the value of a property.

\n" - }, - { - "tagname": "method", - "name": "setScrollTop", - "member": "Ext.panel.Table", - "doc": "

Sets the scrollTop of the TablePanel.

\n", - "params": [ - { - "type": "Number", - "name": "deltaY", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 1022, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-setScrollTop", - "shortDoc": "

Sets the scrollTop of the TablePanel.

\n" - }, - { - "tagname": "method", - "name": "setSize", - "member": "Ext.AbstractComponent", - "doc": "

Sets the width and height of this Component. This method fires the resize event. This method can accept\neither width and height as separate arguments, or you can pass a size object like {width:10, height:20}.

\n", - "params": [ - { - "type": "Mixed", - "name": "width", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Mixed", - "name": "height", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2340, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setSize", - "shortDoc": "Sets the width and height of this Component. This method fires the resize event. This method can accept\neither width ..." - }, - { - "tagname": "method", - "name": "setSource", - "member": "Ext.grid.property.Grid", - "doc": "

Sets the source data object containing the property data. The data object can contain one or more name/value\npairs representing all of the properties of an object to display in the grid, and this data will automatically\nbe loaded into the grid's store. The values should be supplied in the proper data type if needed,\notherwise string type will be assumed. If the grid already contains data, this method will replace any\nexisting data. See also the source config value. Example usage:

\n\n
grid.setSource({\n    \"(name)\": \"My Object\",\n    \"Created\": Ext.Date.parse('10/15/2006', 'm/d/Y'),  // date type\n    \"Available\": false,  // boolean type\n    \"Version\": .01,      // decimal type\n    \"Description\": \"A test object\"\n});\n
\n\n", - "params": [ - { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Panel2.html#Ext-panel-Panel-cfg-tools", + "shortDoc": "An array of Ext.panel.Tool configs/instances to be added to the header tool area. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "tools", + "owner": "Ext.panel.Panel", + "doc": "

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

\n\n

Note that, apart from the toggle tool which is provided when a panel is collapsible, these\ntools only provide the visual button. Any required functionality must be provided by adding\nhandlers that implement the necessary behavior.

\n\n\n

Example usage:

\n\n\n
tools:[{\n    type:'refresh',\n    qtip: 'Refresh form Data',\n    // hidden:true,\n    handler: function(event, toolEl, panel){\n        // refresh logic\n    }\n},\n{\n    type:'help',\n    qtip: 'Get Help',\n    handler: function(event, toolEl, panel){\n        // show help here\n    }\n}]\n
\n\n", + "linenr": 279, + "html_filename": "Panel2.html" + }, + { + "type": "Mixed", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-tpl", + "shortDoc": "An Ext.Template, Ext.XTemplate\nor an array of strings to form an Ext.XTemplate. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", + "private": false, + "name": "tpl", + "owner": "Ext.AbstractComponent", + "doc": "

An Ext.Template, Ext.XTemplate\nor an array of strings to form an Ext.XTemplate.\nUsed in conjunction with the data and\ntplWriteMode configurations.

\n", + "linenr": 252, + "html_filename": "AbstractComponent.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-tplWriteMode", + "shortDoc": "The Ext.(X)Template method to use when\nupdating the content area of the Component. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", + "private": false, + "name": "tplWriteMode", + "owner": "Ext.AbstractComponent", + "doc": "

The Ext.(X)Template method to use when\nupdating the content area of the Component. Defaults to 'overwrite'\n(see Ext.XTemplate.overwrite).

\n", + "linenr": 266, + "html_filename": "AbstractComponent.html" + }, + { + "type": "String/Array", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-ui", + "shortDoc": "A set style for a component. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", + "private": false, + "name": "ui", + "owner": "Ext.AbstractComponent", + "doc": "

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": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Grid.html#Ext-grid-property-Grid-cfg-valueField", + "shortDoc": "Optional. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "name": "valueField", + "owner": "Ext.grid.property.Grid", + "doc": "

Optional. The name of the field from the property store to use as the value field name. Defaults to 'value'\nThis may be useful if you do not configure the property Grid from an object, but use your own store configuration.

\n", + "linenr": 105, + "html_filename": "Grid.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\n
\n\n", + "name": "config" + } + ], + "private": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/Component.js", + "doc": "

Creates new Component.

\n", + "owner": "Ext.Component", + "name": "Grid", + "html_filename": "Component2.html", + "return": { "type": "Object", - "name": "source", - "doc": "

The data object

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 293, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-method-setSource", - "shortDoc": "Sets the source data object containing the property data. The data object can contain one or more name/value\npairs r..." - }, - { - "tagname": "method", - "name": "setTitle", - "member": "Ext.panel.Panel", - "doc": "

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

\n", - "params": [ - { - "type": "String", - "name": "newTitle", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 395, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-method-setTitle", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "setUI", - "member": "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", - "params": [ - { - "type": "String", - "name": "ui", - "doc": "

The new UI for the component

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1309, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setUI", - "shortDoc": "Sets the UI for the component. This will remove any existing UIs on the component. It will also\nloop through any uiCl..." - }, - { - "tagname": "method", - "name": "setVisible", - "member": "Ext.AbstractComponent", - "doc": "

Convenience function to hide or show this component by boolean.

\n", - "params": [ - { - "type": "Boolean", - "name": "visible", - "doc": "

True to show, false to hide

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2006, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setVisible", - "shortDoc": "

Convenience function to hide or show this component by boolean.

\n" - }, - { - "tagname": "method", - "name": "setWidth", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "Number", - "name": "width", - "doc": "

The new width to setThis may be one of:

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 2538, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-setWidth", - "shortDoc": "

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

\n" - }, - { - "tagname": "method", - "name": "show", - "member": "Ext.Component", - "doc": "

Shows this Component, rendering it first if autoRender or {"floating are true.

\n\n\n

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", - "params": [ - { - "type": "String/Element", - "name": "animateTarget", - "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)

\n", - "optional": false - }, - { - "type": "Function", - "name": "callback", - "doc": "

(optional) A callback function to call after the Component is displayed. Only necessary if animation was specified.

\n", - "optional": true - }, - { + "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.

\n", + "name": "Component" + } + ], + "name": "add", + "owner": "Ext.container.AbstractContainer", + "doc": "

Adds Component(s) to this Container.

\n\n

Description:

\n\n\n\n\n

Notes:

\n\n

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

\n\n

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

\n\n

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

\n\n

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

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

Warning:##

\n\n

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

\n", + "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": "AbstractPanel.html#Ext-panel-AbstractPanel-method-addDocked", + "shortDoc": "Adds docked item(s) to the panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "params": [ + { + "type": "Object/Array", + "optional": false, + "doc": "

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

\n", + "name": "component" + }, + { + "type": "Number", + "optional": true, + "doc": "

(optional) The index at which the Component will be added

\n", + "name": "pos" + } + ], + "name": "addDocked", + "owner": "Ext.panel.AbstractPanel", + "doc": "

Adds docked item(s) to the panel.

\n", + "linenr": 263, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "AbstractPanel.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:

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

\n", + "name": "handler" + }, + { + "type": "Object", + "optional": true, + "doc": "

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

\n", + "name": "scope" + }, + { + "type": "Object", + "optional": true, + "doc": "

(optional) An object containing handler configuration.

\n\n

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

\n\n

This object may contain any of the following properties:

\n\n\n\n\n

Combining Options

\n\n

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

\n\n

A delayed, one-time listener.

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

Attaching multiple handlers in 1 call

\n\n

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

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

One can also specify options for each event handler separately:

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

\n", + "name": "fn" + }, + { + "type": "Object", + "optional": true, + "doc": "

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

\n", + "name": "scope" + }, + { + "type": "Object", + "optional": true, + "doc": "

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

\n", + "name": "opt" + } + ], + "name": "addManagedListener", + "owner": "Ext.util.Observable", + "doc": "

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\n
Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n
\n", + "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.

\n

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

\n

Properties include

\n

Animating an Element

\nWhen animating an Element, the following properties may be specified in from, to, and keyframe objects:\n

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

\n

Animating a Component

\nWhen animating an Element, the following properties may be specified in from, to, and keyframe objects:\n

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

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

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

\n\n", + "linenr": 207, + "return": { "type": "Object", - "name": "scope", - "doc": "

(optional) The scope (this reference) in which the callback is executed. Defaults to this Component.

\n", - "optional": true - } - ], - "return": { - "type": "Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 645, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-show", - "shortDoc": "Shows this Component, rendering it first if autoRender or {"floating are true.\n\n\nAfter being shown, a floating C..." - }, - { - "tagname": "method", - "name": "showHorizontalScroller", - "member": "Ext.panel.Table", - "doc": "

Show the horizontalScroller and add the horizontalScrollerPresentCls.

\n", - "params": [ - - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 801, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-showHorizontalScroller", - "shortDoc": "

Show the horizontalScroller and add the horizontalScrollerPresentCls.

\n" - }, - { - "tagname": "method", - "name": "showVerticalScroller", - "member": "Ext.panel.Table", - "doc": "

Show the verticalScroller and add the verticalScrollerPresentCls.

\n", - "params": [ + "doc": "

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": [ - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 838, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-method-showVerticalScroller", - "shortDoc": "

Show the verticalScroller and add the verticalScrollerPresentCls.

\n" - }, - { - "tagname": "method", - "name": "stopAnimation", - "member": "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", - "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

\n", + "name": "args" + } + ], + "name": "callOverridden", + "owner": "Ext.Base", + "doc": "

Call the original method that was previously overridden with Ext.Base.override

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

\n", + "name": "args" + } + ], + "name": "callParent", + "owner": "Ext.Base", + "doc": "

Call the parent's overridden method. For example:

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

\n", + "name": "scope" + } + ], + "name": "capture", + "owner": "Ext.util.Observable", + "doc": "

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.

\n", + "linenr": 719, + "return": { + "type": "Ext.Container", + "doc": "

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": [ - ], - "return": { - "type": "Ext.core.Element", - "doc": "

The Element

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js", - "linenr": 335, - "html_filename": "Animate.html", - "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 ..." - }, - { - "tagname": "method", - "name": "stopFx", - "member": "Ext.util.Animate", - "doc": "

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

\n", - "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": [ - ], - "return": { - "type": "Ext.core.Element", - "doc": "

The Element

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js", - "linenr": 326, - "html_filename": "Animate.html", - "href": "Animate.html#Ext-util-Animate-method-stopFx", - "shortDoc": "@deprecated 4.0 Replaced by stopAnimation\nStops any running effects and clears this object's internal effects queue i..." - }, - { - "tagname": "method", - "name": "suspendEvents", - "member": "Ext.util.Observable", - "doc": "

Suspend the firing of all events. (see resumeEvents)

\n", - "params": [ - { - "type": "Boolean", - "name": "queueSuspended", - "doc": "

Pass as true to queue up suspended events to be fired\nafter the resumeEvents call instead of discarding all suspended events;

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 490, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-suspendEvents", - "shortDoc": "

Suspend the firing of all events. (see resumeEvents)

\n" - }, - { - "tagname": "method", - "name": "syncFx", - "member": "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", - "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": [ - ], - "return": { - "type": "Object", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js", - "linenr": 345, - "html_filename": "Animate.html", - "href": "Animate.html#Ext-util-Animate-method-syncFx", - "shortDoc": "Ensures that all effects queued after syncFx is called on this object are\nrun concurrently. This is the opposite of ..." - }, - { - "tagname": "method", - "name": "toBack", - "member": "Ext.util.Floating", - "doc": "

Sends this Component to the back of (lower z-index than) any other visible windows

\n", - "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": "Panel2.html#Ext-panel-Panel-method-close", + "shortDoc": "Closes the Panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ - ], - "return": { - "type": "Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js", - "linenr": 240, - "html_filename": "Floating.html", - "href": "Floating.html#Ext-util-Floating-method-toBack", - "shortDoc": "

Sends this Component to the back of (lower z-index than) any other visible windows

\n" - }, - { - "tagname": "method", - "name": "toFront", - "member": "Ext.util.Floating", - "doc": "

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

\n\n\n

If this Component is modal, inserts the modal mask just below this Component in the z-index stack.

\n\n", - "params": [ - { - "type": "Boolean", - "name": "preventFocus", - "doc": "

(optional) Specify true to prevent the Component from being focused.

\n", - "optional": true - } - ], - "return": { - "type": "Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js", - "linenr": 188, - "html_filename": "Floating.html", - "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..." - }, - { - "tagname": "method", - "name": "toggleCollapse", - "member": "Ext.panel.Panel", - "doc": "

Shortcut for performing an expand or collapse based on the current state of the panel.

\n", - "params": [ + ], + "name": "close", + "owner": "Ext.panel.Panel", + "doc": "

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

\n

Note: This method is not affected by the closeAction setting which\nonly affects the action triggered when clicking the 'close' tool in the header.\nTo hide the Panel without destroying it, call hide.

\n\n", + "linenr": 755, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Panel2.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Panel2.html#Ext-panel-Panel-method-collapse", + "shortDoc": "Collapses the panel body so that the body becomes hidden. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + { + "type": "String", + "optional": false, + "doc": "

. The direction to collapse towards. Must be one of

\n", + "name": "direction" + }, + { + "type": "Boolean", + "optional": false, + "doc": "

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

\n", + "name": "animate" + }, + { + "type": "Object", + "optional": false, + "doc": "\n", + "name": "internal" + } + ], + "name": "collapse", + "owner": "Ext.panel.Panel", + "doc": "

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

\n", + "linenr": 887, + "return": { + "type": "Ext.panel.Panel", + "doc": "

this

\n" + }, + "html_filename": "Panel2.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": [ - ], - "return": { - "type": "Ext.panel.Panel", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 1313, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-method-toggleCollapse", - "shortDoc": "

Shortcut for performing an expand or collapse based on the current state of the panel.

\n" - }, - { - "tagname": "method", - "name": "un", - "member": "Ext.util.Observable", - "doc": "

Removes an event handler (shorthand for removeListener.)

\n", - "params": [ - { - "type": "String", - "name": "eventName", - "doc": "

The type of event the handler was associated with.

\n", - "optional": false - }, - { - "type": "Function", - "name": "handler", - "doc": "

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

\n", - "optional": false - }, - { - "type": "Object", - "name": "scope", - "doc": "

(optional) The scope originally specified for the handler.

\n", - "optional": true - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", - "linenr": 608, - "html_filename": "Observable.html", - "href": "Observable.html#Ext-util-Observable-method-un", - "shortDoc": "

Removes an event handler (shorthand for removeListener.)

\n" - }, - { - "tagname": "method", - "name": "up", - "member": "Ext.AbstractComponent", - "doc": "

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

\n\n\n

Example:\n

var owningTabPanel = grid.up('tabpanel');\n
\n\n", - "params": [ - { - "type": "String", - "name": "selector", - "doc": "

Optional. The simple selector to test.

\n", - "optional": false - } - ], - "return": { - "type": "Container", - "doc": "

The matching ancestor Container (or undefined if no match was found).

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1728, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-up", - "shortDoc": "Walks up the ownerCt axis looking for an ancestor Container which matches\nthe passed simple selector.\n\n\nExample:\nvar ..." - }, - { - "tagname": "method", - "name": "update", - "member": "Ext.AbstractComponent", - "doc": "

Update the content area of a component.

\n", - "params": [ - { - "type": "Mixed", - "name": "htmlOrData", - "doc": "

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", - "optional": false - }, - { - "type": "Boolean", - "name": "loadScripts", - "doc": "

(optional) Only legitimate when using the html configuration. Defaults to false

\n", - "optional": true - }, - { - "type": "Function", - "name": "callback", - "doc": "

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

\n", - "optional": true - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 1974, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-method-update", - "shortDoc": "

Update the content area of a component.

\n" - }, - { - "tagname": "method", - "name": "updateBox", - "member": "Ext.Component", - "doc": "

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

\n", - "params": [ - { + ], + "name": "create", + "owner": "Ext.Base", + "doc": "

Create a new instance of this Class.

\n\n
Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n
\n\n

All parameters are passed to the constructor of the class.

\n", + "linenr": 329, + "return": { "type": "Object", - "name": "box", - "doc": "

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

\n", - "optional": false - } - ], - "return": { - "type": "Ext.Component", - "doc": "

this

\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 551, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-method-updateBox", - "shortDoc": "

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

\n" - } - ], - "property": [ - { - "tagname": "property", - "name": "centerClientWidth", - "member": "Ext.panel.Table", - "type": "Object", - "doc": "

clientWidth often returns 0 in IE resulting in an\ninfinity result, here we use offsetWidth bc there are\nno possible scrollbars and we don't care about margins

\n", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 744, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-property-centerClientWidth", - "shortDoc": "clientWidth often returns 0 in IE resulting in an\ninfinity result, here we use offsetWidth bc there are\nno possible s..." - }, - { - "tagname": "property", - "name": "dd", - "member": "Ext.panel.Panel", - "type": "Ext.dd.DragSource.", - "doc": "

If this Panel is configured draggable, this property will contain\nan instance of Ext.dd.DragSource which handles dragging the Panel.

\n\n\n

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

\n", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 1336, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-property-dd", - "shortDoc": "If this Panel is configured draggable, this property will contain\nan instance of Ext.dd.DragSource which handles drag..." - }, - { - "tagname": "property", - "name": "draggable", - "member": "Ext.AbstractComponent", - "type": "Boolean", - "doc": "

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

\n", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 374, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-property-draggable" - }, - { - "tagname": "property", - "name": "floatParent", - "member": "Ext.Component", - "type": "Ext.Container", - "doc": "

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

\n\n\n

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

\n\n\n

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

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

\n\n\n

See floating and zIndexManager

\n\n", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 221, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-property-floatParent", - "shortDoc": "Optional. Only present for floating Components which were inserted as descendant items of floating Containers.\n\n\nFloa..." - }, - { - "tagname": "property", - "name": "frameSize", - "member": "Ext.AbstractComponent", - "type": "Object", - "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\n

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

\n\n\n
\n\n", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 207, - "html_filename": "AbstractComponent.html", - "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 ..." - }, - { - "tagname": "property", - "name": "hasView", - "member": "Ext.panel.Table", - "type": "Boolean", - "doc": "

Boolean to indicate that a view has been injected into the panel.

\n", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 34, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-property-hasView" - }, - { - "tagname": "property", - "name": "items", - "member": "Ext.container.AbstractContainer", - "type": "Ext.util.MixedCollection", - "doc": "

The MixedCollection containing all the child items of this container.

\n", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 273, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-property-items" - }, - { - "tagname": "property", - "name": "maskOnDisable", - "member": "Ext.AbstractComponent", - "type": "Boolean", - "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", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 513, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-property-maskOnDisable", - "shortDoc": "This is an internal flag that you use when creating custom components.\nBy default this is set to true which means tha..." - }, - { - "tagname": "property", - "name": "ownerCt", - "member": "Ext.AbstractComponent", - "type": "Ext.Container", - "doc": "

This Component's owner Container (defaults to undefined, and is set automatically when\nthis Component is added to a Container). Read-only.

\n\n

Note: to access items within the Container see itemId.

\n\n", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 101, - "html_filename": "AbstractComponent.html", - "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..." - }, - { - "tagname": "property", - "name": "rendered", - "member": "Ext.AbstractComponent", - "type": "Boolean", - "doc": "

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

\n", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 500, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-property-rendered" - }, - { - "tagname": "property", - "name": "zIndexManager", - "member": "Ext.Component", - "type": "Ext.ZIndexManager", - "doc": "

Optional. Only present for floating Components after they have been rendered.

\n\n\n

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

\n\n\n

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

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

\n\n\n

This defaults to the global ZIndexManager for floating Components that are programatically\nrendered.

\n\n\n

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

See floating and floatParent

\n\n", - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js", - "linenr": 206, - "html_filename": "Component.html", - "href": "Component.html#Ext-Component-property-zIndexManager", - "shortDoc": "Optional. Only present for floating Components after they have been rendered.\n\n\nA reference to the ZIndexManager whic..." - } - ], - "event": [ - { - "tagname": "event", - "name": "activate", - "member": "Ext.AbstractComponent", - "doc": "

Fires after a Component has been visually activated.

\n", - "params": [ - { - "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 540, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-activate", - "shortDoc": "

Fires after a Component has been visually activated.

\n" - }, - { - "tagname": "event", - "name": "add", - "member": "Ext.container.AbstractContainer", - "doc": "

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

\n", - "params": [ - { - "type": "Ext.container.Container", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.Component", - "name": "component", - "doc": "

The component that was added

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The index at which the component was added to the container's items collection

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 215, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-add", - "shortDoc": "

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

\n" - }, - { - "tagname": "event", - "name": "added", - "member": "Ext.AbstractComponent", - "doc": "

Fires after a Component had been added to a Container.

\n", - "params": [ - { - "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - }, - { + "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\n
Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -> test.method1()\n
\n", + "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": "Table.html#Ext-panel-Table-method-determineScrollbars", + "shortDoc": "Request a recalculation of scrollbars and put them in if they are needed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "determineScrollbars", + "owner": "Ext.panel.Table", + "doc": "

Request a recalculation of scrollbars and put them in if they are needed.

\n", + "linenr": 825, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.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", - "name": "container", - "doc": "

Parent Container

\n", - "optional": false - }, - { - "type": "Number", - "name": "pos", - "doc": "

position of Component

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 560, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-added", - "shortDoc": "

Fires after a Component had been added to a Container.

\n" - }, - { - "tagname": "event", - "name": "afterlayout", - "member": "Ext.container.AbstractContainer", - "doc": "

Fires when the components in this container are arranged by the associated layout manager.

\n", - "params": [ - { + "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\n

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

\n\n\n

An 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", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "ContainerLayout", - "name": "layout", - "doc": "

The ContainerLayout implementation for this container

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 191, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-afterlayout", - "shortDoc": "

Fires when the components in this container are arranged by the associated layout manager.

\n" - }, - { - "tagname": "event", - "name": "afterrender", - "member": "Ext.AbstractComponent", - "doc": "

Fires after the component rendering is finished.

\n\n\n

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

\n\n", - "params": [ - { - "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 627, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-afterrender", - "shortDoc": "Fires after the component rendering is finished.\n\n\nThe afterrender event is fired after this Component has been rende..." - }, - { - "tagname": "event", - "name": "beforeactivate", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 532, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforeactivate", - "shortDoc": "Fires before a Component has been visually activated.\nReturning false from an event listener can prevent the activate..." - }, - { - "tagname": "event", - "name": "beforeadd", - "member": "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", - "params": [ - { + "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.

\n\n

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

\n\n

Example:

\n\n
Ext.override(Ext.form.field.Base, {\n    //  Add functionality to Field's initComponent to enable the change event to bubble\n    initComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n        this.enableBubble('change');\n    }),\n\n    //  We know that we want Field's events to bubble directly to the FormPanel.\n    getBubbleTarget : function() {\n        if (!this.formPanel) {\n            this.formPanel = this.findParentByType('form');\n        }\n        return this.formPanel;\n    }\n});\n\nvar myForm = new Ext.formPanel({\n    title: 'User Details',\n    items: [{\n        ...\n    }],\n    listeners: {\n        change: function() {\n            // Title goes red if form has been modified.\n            myForm.header.setStyle('color', 'red');\n        }\n    }\n});\n
\n", + "linenr": 609, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Observable.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Panel2.html#Ext-panel-Panel-method-expand", + "shortDoc": "Expands the panel body so that it becomes visible. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + { + "type": "Boolean", + "optional": false, + "doc": "

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

\n", + "name": "animate" + } + ], + "name": "expand", + "owner": "Ext.panel.Panel", + "doc": "

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

\n", + "linenr": 1178, + "return": { + "type": "Ext.panel.Panel", + "doc": "

this

\n" + }, + "html_filename": "Panel2.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", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.Component", - "name": "component", - "doc": "

The component being added

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The index at which the component will be added to the container's items collection

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 198, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-beforeadd", - "shortDoc": "

Fires before any Ext.Component is added or inserted into the container.\nA handler can return false to cancel the add.

\n" - }, - { - "tagname": "event", - "name": "beforecardswitch", - "member": "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", - "params": [ - { + "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\n

See also the up method.

\n\n", + "linenr": 992, + "return": { "type": "Ext.container.Container", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.Component", - "name": "newCard", - "doc": "

The card that will be switched to

\n", - "optional": false - }, - { - "type": "Ext.Component", - "name": "oldCard", - "doc": "

The card that will be switched from

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The index of the card that will be switched to

\n", - "optional": false - }, - { + "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).

\n\n

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", - "name": "animated", - "doc": "

True if this cardswitch will be animated

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 232, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-beforecardswitch", - "shortDoc": "Fires before this container switches the active card. This event\nis only available if this container uses a CardLayou..." - }, - { - "tagname": "event", - "name": "beforecontainerclick", - "member": "Ext.panel.Table", - "doc": "

Fires before the click event on the container is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 443, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforecontainerclick", - "shortDoc": "

Fires before the click event on the container is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforecontainercontextmenu", - "member": "Ext.panel.Table", - "doc": "

Fires before the contextmenu event on the container is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 457, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforecontainercontextmenu", - "shortDoc": "

Fires before the contextmenu event on the container is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforecontainerdblclick", - "member": "Ext.panel.Table", - "doc": "

Fires before the dblclick event on the container is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 450, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforecontainerdblclick", - "shortDoc": "

Fires before the dblclick event on the container is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforecontainermousedown", - "member": "Ext.panel.Table", - "doc": "

Fires before the mousedown event on the container is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 415, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforecontainermousedown", - "shortDoc": "

Fires before the mousedown event on the container is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforecontainermouseout", - "member": "Ext.panel.Table", - "doc": "

Fires before the mouseout event on the container is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 436, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforecontainermouseout", - "shortDoc": "

Fires before the mouseout event on the container is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforecontainermouseover", - "member": "Ext.panel.Table", - "doc": "

Fires before the mouseover event on the container is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 429, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforecontainermouseover", - "shortDoc": "

Fires before the mouseover event on the container is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforecontainermouseup", - "member": "Ext.panel.Table", - "doc": "

Fires before the mouseup event on the container is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 422, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforecontainermouseup", - "shortDoc": "

Fires before the mouseup event on the container is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforedeactivate", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { - "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 546, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforedeactivate", - "shortDoc": "Fires before a Component has been visually deactivated.\nReturning false from an event listener can prevent the deacti..." - }, - { - "tagname": "event", - "name": "beforedestroy", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { + "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", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 635, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforedestroy", - "shortDoc": "

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

\n" - }, - { - "tagname": "event", - "name": "beforehide", - "member": "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", - "params": [ - { - "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 593, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforehide", - "shortDoc": "

Fires before the component is hidden when calling the hide method.\nReturn false from an event handler to stop the hide.

\n" - }, - { - "tagname": "event", - "name": "beforeitemclick", - "member": "Ext.panel.Table", - "doc": "

Fires before the click event on an item is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 315, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforeitemclick", - "shortDoc": "

Fires before the click event on an item is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforeitemcontextmenu", - "member": "Ext.panel.Table", - "doc": "

Fires before the contextmenu event on an item is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 335, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforeitemcontextmenu", - "shortDoc": "

Fires before the contextmenu event on an item is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforeitemdblclick", - "member": "Ext.panel.Table", - "doc": "

Fires before the dblclick event on an item is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 325, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforeitemdblclick", - "shortDoc": "

Fires before the dblclick event on an item is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforeitemmousedown", - "member": "Ext.panel.Table", - "doc": "

Fires before the mousedown event on an item is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 275, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforeitemmousedown", - "shortDoc": "

Fires before the mousedown event on an item is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforeitemmouseenter", - "member": "Ext.panel.Table", - "doc": "

Fires before the mouseenter event on an item is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 295, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforeitemmouseenter", - "shortDoc": "

Fires before the mouseenter event on an item is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforeitemmouseleave", - "member": "Ext.panel.Table", - "doc": "

Fires before the mouseleave event on an item is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 305, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforeitemmouseleave", - "shortDoc": "

Fires before the mouseleave event on an item is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforeitemmouseup", - "member": "Ext.panel.Table", - "doc": "

Fires before the mouseup event on an item is processed. Returns false to cancel the default action.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 285, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforeitemmouseup", - "shortDoc": "

Fires before the mouseup event on an item is processed. Returns false to cancel the default action.

\n" - }, - { - "tagname": "event", - "name": "beforepropertychange", - "member": "Ext.grid.property.Grid", - "doc": "

Fires before a property value changes. Handlers can return false to cancel the property change\n(this will internally call Ext.data.Record.reject on the property's record).

\n", - "params": [ - { - "type": "Object", - "name": "source", - "doc": "

The source data object for the grid (corresponds to the same object passed in\nas the source config property).

\n", - "optional": false - }, - { - "type": "String", - "name": "recordId", - "doc": "

The record's id in the data store

\n", - "optional": false - }, - { - "type": "Mixed", - "name": "value", - "doc": "

The current edited property value

\n", - "optional": false - }, - { + "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", - "name": "oldValue", - "doc": "

The original property value prior to editing

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 169, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-event-beforepropertychange", - "shortDoc": "Fires before a property value changes. Handlers can return false to cancel the property change\n(this will internally..." - }, - { - "tagname": "event", - "name": "beforeremove", - "member": "Ext.container.AbstractContainer", - "doc": "

Fires before any Ext.Component is removed from the container. A handler can return\nfalse to cancel the remove.

\n", - "params": [ - { + "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", - "name": "this", - "doc": "\n", - "optional": false - }, - { + "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": "AbstractPanel.html#Ext-panel-AbstractPanel-method-getComponent", + "shortDoc": "Attempts a default component lookup (see Ext.container.Container.getComponent). ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "params": [ + { + "type": "String/Number", + "optional": false, + "doc": "

The component id, itemId or position to find

\n", + "name": "comp" + } + ], + "name": "getComponent", + "owner": "Ext.panel.AbstractPanel", + "doc": "

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

\n", + "linenr": 176, + "return": { "type": "Ext.Component", - "name": "component", - "doc": "

The component being removed

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 207, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-beforeremove", - "shortDoc": "

Fires before any Ext.Component is removed from the container. A handler can return\nfalse to cancel the remove.

\n" - }, - { - "tagname": "event", - "name": "beforerender", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { + "doc": "

The component (if found)

\n" + }, + "html_filename": "AbstractPanel.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-getDockedComponent", + "shortDoc": "Finds a docked component by id, itemId or position. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "params": [ + { + "type": "String/Number", + "optional": false, + "doc": "

The id, itemId or position of the docked component (see getComponent for details)

\n", + "name": "comp" + } + ], + "name": "getDockedComponent", + "owner": "Ext.panel.AbstractPanel", + "doc": "

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

\n", + "linenr": 164, + "return": { "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 614, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforerender", - "shortDoc": "

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

\n" - }, - { - "tagname": "event", - "name": "beforeselect", - "member": "Ext.panel.Table", - "doc": "

Fires before a selection is made. If any handlers return false, the selection is cancelled.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { + "doc": "

The docked component (if found)

\n" + }, + "html_filename": "AbstractPanel.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-getDockedItems", + "shortDoc": "Retrieve an array of all currently docked Components. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "params": [ + { + "type": "String", + "optional": false, + "doc": "

A ComponentQuery selector string to filter the returned items.

\n", + "name": "cqSelector" + } + ], + "name": "getDockedItems", + "owner": "Ext.panel.AbstractPanel", + "doc": "

Retrieve an array of all currently docked Components.

\n", + "linenr": 363, + "return": { + "type": "Array", + "doc": "

An array of components.

\n" + }, + "html_filename": "AbstractPanel.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": "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": "AbstractComponent.html#Ext-AbstractComponent-method-getInsertPosition", + "shortDoc": "This function takes the position argument passed to onRender and returns a\nDOM element that you can use in the insert...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", + "private": false, + "params": [ + { + "type": "String/Number/Element/HTMLElement", + "optional": false, + "doc": "

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", - "name": "node", - "doc": "

The node to be selected

\n", - "optional": false - }, - { + "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": "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\n
Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n
\n", + "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", - "name": "selections", - "doc": "

Array of currently selected nodes

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 514, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-beforeselect", - "shortDoc": "

Fires before a selection is made. If any handlers return false, the selection is cancelled.

\n" - }, - { - "tagname": "event", - "name": "beforeshow", - "member": "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", - "params": [ - { - "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 580, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforeshow", - "shortDoc": "

Fires before the component is shown when calling the show method.\nReturn false from an event handler to stop the show.

\n" - }, - { - "tagname": "event", - "name": "beforestaterestore", - "member": "Ext.state.Stateful", - "doc": "

Fires before the state of the object is restored. Return false from an event handler to stop the restore.

\n", - "params": [ - { - "type": "Ext.state.Stateful", - "name": "this", - "doc": "\n", - "optional": false - }, - { + "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": "Table.html#Ext-panel-Table-method-getSelectionModel", + "shortDoc": "Returns the selection model being used and creates it via the configuration\nif it has not been created already. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "getSelectionModel", + "owner": "Ext.panel.Table", + "doc": "

Returns the selection model being used and creates it via the configuration\nif it has not been created already.

\n", + "linenr": 1200, + "return": { + "type": "Ext.selection.Model", + "doc": "

selModel

\n" + }, + "html_filename": "Table.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", - "name": "state", - "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", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 101, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-event-beforestaterestore", - "shortDoc": "

Fires before the state of the object is restored. Return false from an event handler to stop the restore.

\n" - }, - { - "tagname": "event", - "name": "beforestatesave", - "member": "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", - "params": [ - { - "type": "Ext.state.Stateful", - "name": "this", - "doc": "\n", - "optional": false - }, - { + "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": "Grid.html#Ext-grid-property-Grid-method-getSource", + "shortDoc": "Gets the source data object containing the property data. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "params": [ + + ], + "name": "getSource", + "owner": "Ext.grid.property.Grid", + "doc": "

Gets the source data object containing the property data. See setSource for details regarding the\nformat of the data object.

\n", + "linenr": 317, + "return": { "type": "Object", - "name": "state", - "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", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 122, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-event-beforestatesave", - "shortDoc": "

Fires before the state of the object is saved to the configured state provider. Return false to stop the save.

\n" - }, - { - "tagname": "event", - "name": "bodyresize", - "member": "Ext.panel.AbstractPanel", - "doc": "

Fires after the Panel has been resized.

\n", - "params": [ - { - "type": "Ext.panel.Panel", - "name": "p", - "doc": "

the Panel which has been resized.

\n", - "optional": false - }, - { - "type": "Number", - "name": "width", - "doc": "

The Panel body's new width.

\n", - "optional": false - }, - { + "doc": "

The data object

\n" + }, + "html_filename": "Grid.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 as flex, anchor, width\nand height along with collapsed state.

\n\n

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

\n\n\n

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

\n\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": "Table.html#Ext-panel-Table-method-getStore", + "shortDoc": "Returns the store associated with this Panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "getStore", + "owner": "Ext.panel.Table", + "doc": "

Returns the store associated with this Panel.

\n", + "linenr": 694, + "return": { + "type": "Ext.data.Store", + "doc": "

The store

\n" + }, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Table.html#Ext-panel-Table-method-getView", + "shortDoc": "Gets the view for this panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "getView", + "owner": "Ext.panel.Table", + "doc": "

Gets the view for this panel.

\n", + "linenr": 702, + "return": { + "type": "Ext.view.Table", + "doc": "\n" + }, + "html_filename": "Table.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", - "name": "height", - "doc": "

The Panel body's new height.

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js", - "linenr": 93, - "html_filename": "AbstractPanel.html", - "href": "AbstractPanel.html#Ext-panel-AbstractPanel-event-bodyresize", - "shortDoc": "

Fires after the Panel has been resized.

\n" - }, - { - "tagname": "event", - "name": "cardswitch", - "member": "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", - "params": [ - { - "type": "Ext.container.Container", - "name": "this", - "doc": "\n", - "optional": false - }, - { + "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\n
var 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\n

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

\n\n\n

Example usage:

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

\n", + "name": "animateTarget" + }, + { + "type": "Function", + "optional": true, + "doc": "

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

\n", + "name": "scope" + } + ], + "name": "hide", + "owner": "Ext.Component", + "doc": "

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

\n", + "linenr": 751, + "return": { "type": "Ext.Component", - "name": "newCard", - "doc": "

The card that has been switched to

\n", - "optional": false - }, - { + "doc": "

this

\n" + }, + "html_filename": "Component2.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Table.html#Ext-panel-Table-method-hideHorizontalScroller", + "shortDoc": "Hide the verticalScroller and remove the horizontalScrollerPresentCls. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "hideHorizontalScroller", + "owner": "Ext.panel.Table", + "doc": "

Hide the verticalScroller and remove the horizontalScrollerPresentCls.

\n", + "linenr": 958, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Table.html#Ext-panel-Table-method-hideVerticalScroller", + "shortDoc": "Hide the verticalScroller and remove the verticalScrollerPresentCls. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "hideVerticalScroller", + "owner": "Ext.panel.Table", + "doc": "

Hide the verticalScroller and remove the verticalScrollerPresentCls.

\n", + "linenr": 989, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.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\n
Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n
\n", + "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\n
Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n\n        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n
\n", + "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": "Table.html#Ext-panel-Table-method-initHorizontalScroller", + "shortDoc": "Returns the horizontal scroller config. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "initHorizontalScroller", + "owner": "Ext.panel.Table", + "doc": "

Returns the horizontal scroller config.

\n", + "linenr": 554, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Table.html#Ext-panel-Table-method-initVerticalScroller", + "shortDoc": "Returns the vertical scroller config. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "initVerticalScroller", + "owner": "Ext.panel.Table", + "doc": "

Returns the vertical scroller config.

\n", + "linenr": 569, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.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.

\n", + "name": "component" + } + ], + "name": "insert", + "owner": "Ext.container.AbstractContainer", + "doc": "

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", - "name": "oldCard", - "doc": "

The card that has been switched from

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The index of the card that has been switched to

\n", - "optional": false - }, - { + "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": "AbstractPanel.html#Ext-panel-AbstractPanel-method-insertDocked", + "shortDoc": "Inserts docked item(s) to the panel at the indicated position. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "params": [ + { + "type": "Number", + "optional": false, + "doc": "

The index at which the Component will be inserted

\n", + "name": "pos" + }, + { + "type": "Object/Array", + "optional": false, + "doc": "

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

\n", + "name": "component" + } + ], + "name": "insertDocked", + "owner": "Ext.panel.AbstractPanel", + "doc": "

Inserts docked item(s) to the panel at the indicated position.

\n", + "linenr": 309, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "AbstractPanel.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Table.html#Ext-panel-Table-method-invalidateScroller", + "shortDoc": "Invalides scrollers that are present and forces a recalculation. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "invalidateScroller", + "owner": "Ext.panel.Table", + "doc": "

Invalides scrollers that are present and forces a recalculation.\n(Not related to showing/hiding the scrollers)

\n", + "linenr": 1028, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.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", - "name": "animated", - "doc": "

True if this cardswitch was animated

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 246, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-cardswitch", - "shortDoc": "Fires after this container switches the active card. If the card\nis switched using an animation, this event will fire..." - }, - { - "tagname": "event", - "name": "containerclick", - "member": "Ext.panel.Table", - "doc": "

Fires when the container is clicked.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 485, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-containerclick", - "shortDoc": "

Fires when the container is clicked.

\n" - }, - { - "tagname": "event", - "name": "containercontextmenu", - "member": "Ext.panel.Table", - "doc": "

Fires when the container is right clicked.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 499, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-containercontextmenu", - "shortDoc": "

Fires when the container is right clicked.

\n" - }, - { - "tagname": "event", - "name": "containerdblclick", - "member": "Ext.panel.Table", - "doc": "

Fires when the container is double clicked.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 492, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-containerdblclick", - "shortDoc": "

Fires when the container is double clicked.

\n" - }, - { - "tagname": "event", - "name": "containermouseout", - "member": "Ext.panel.Table", - "doc": "

Fires when you move the mouse out of the container.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 478, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-containermouseout", - "shortDoc": "

Fires when you move the mouse out of the container.

\n" - }, - { - "tagname": "event", - "name": "containermouseover", - "member": "Ext.panel.Table", - "doc": "

Fires when you move the mouse over the container.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 471, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-containermouseover", - "shortDoc": "

Fires when you move the mouse over the container.

\n" - }, - { - "tagname": "event", - "name": "containermouseup", - "member": "Ext.panel.Table", - "doc": "

Fires when there is a mouse up on the container

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 464, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-containermouseup", - "shortDoc": "

Fires when there is a mouse up on the container

\n" - }, - { - "tagname": "event", - "name": "deactivate", - "member": "Ext.AbstractComponent", - "doc": "

Fires after a Component has been visually deactivated.

\n", - "params": [ - { - "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 554, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-deactivate", - "shortDoc": "

Fires after a Component has been visually deactivated.

\n" - }, - { - "tagname": "event", - "name": "destroy", - "member": "Ext.AbstractComponent", - "doc": "

Fires after the component is destroyed.

\n", - "params": [ - { + "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.

\n\n

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

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

\n\n\n

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

\n\n\n

Example usage:

\n\n\n
var t = new Ext.form.field.Text();\nvar isText = t.isXType('textfield');        // true\nvar isBoxSubclass = t.isXType('field');       // true, descended from Ext.form.field.Base\nvar isBoxInstance = t.isXType('field', true); // false, not a direct Ext.form.field.Base instance\n
\n\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.

\n", + "name": "fn" + }, + { + "type": "Object", + "optional": true, + "doc": "

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

\n", + "name": "scope" + }, + { + "type": "Object", + "optional": true, + "doc": "

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

\n", + "name": "opt" + } + ], + "name": "mon", + "owner": "Ext.util.Observable", + "doc": "

Shorthand for addManagedListener.

\n\n

Adds 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", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 641, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-destroy", - "shortDoc": "

Fires after the component is destroyed.

\n" - }, - { - "tagname": "event", - "name": "disable", - "member": "Ext.AbstractComponent", - "doc": "

Fires after the component is disabled.

\n", - "params": [ - { + "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.

\n", + "name": "fn" + }, + { + "type": "Object", + "optional": false, + "doc": "

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

\n", + "name": "scope" + } + ], + "name": "mun", + "owner": "Ext.util.Observable", + "doc": "

Shorthand for removeManagedListener.

\n\n

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

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

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

\n\n\n

May also be refered to as next()

\n\n\n

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

\n\n", + "linenr": 1916, + "return": { + "type": "void", + "doc": "

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

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

Usage:

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

\n", + "name": "handler" + }, + { + "type": "Object", + "optional": true, + "doc": "

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

\n", + "name": "scope" + }, + { + "type": "Object", + "optional": true, + "doc": "

(optional) An object containing handler configuration.

\n\n

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

\n\n

This object may contain any of the following properties:

\n\n\n\n\n

Combining Options

\n\n

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

\n\n

A delayed, one-time listener.

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

Attaching multiple handlers in 1 call

\n\n

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

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

One can also specify options for each event handler separately:

\n\n
myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
\n", + "name": "options" + } + ], + "name": "on", + "owner": "Ext.util.Observable", + "doc": "

Shorthand for addListener.

\n\n

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

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

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

\n\n\n

May also be refered to as prev()

\n\n\n

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

\n\n", + "linenr": 1946, + "return": { + "type": "void", + "doc": "

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": "Table.html#Ext-panel-Table-method-reconfigure", + "shortDoc": "Reconfigure the table with a new store/column. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.data.Store", + "optional": false, + "doc": "

The new store.

\n", + "name": "store" + }, + { + "type": "Array", + "optional": false, + "doc": "

An array of column configs

\n", + "name": "columns" + } + ], + "name": "reconfigure", + "owner": "Ext.panel.Table", + "doc": "

Reconfigure the table with a new store/column.\nEither the store or the column can be ommitted if you don't wish to change them.

\n", + "linenr": 1276, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.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.

\n", + "linenr": 573, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Observable.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Observable.html#Ext-util-Observable-method-releaseCapture", + "shortDoc": "Removes all added captures from the 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 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", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 568, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-disable", - "shortDoc": "

Fires after the component is disabled.

\n" - }, - { - "tagname": "event", - "name": "enable", - "member": "Ext.AbstractComponent", - "doc": "

Fires after the component is enabled.

\n", - "params": [ - { + "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", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 574, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-enable", - "shortDoc": "

Fires after the component is enabled.

\n" - }, - { - "tagname": "event", - "name": "hide", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { + "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": "AbstractPanel.html#Ext-panel-AbstractPanel-method-removeDocked", + "shortDoc": "Removes the docked item from the panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "params": [ + { + "type": "Ext.Component", + "optional": false, + "doc": "

. The Component to remove.

\n", + "name": "item" + }, + { + "type": "Boolean", + "optional": true, + "doc": "

(optional) Destroy the component after removal.

\n", + "name": "autoDestroy" + } + ], + "name": "removeDocked", + "owner": "Ext.panel.AbstractPanel", + "doc": "

Removes the docked item from the panel.

\n", + "linenr": 320, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "AbstractPanel.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.

\n", + "name": "fn" + }, + { + "type": "Object", + "optional": false, + "doc": "

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

\n", + "name": "scope" + } + ], + "name": "removeManagedListener", + "owner": "Ext.util.Observable", + "doc": "

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": "Grid.html#Ext-grid-property-Grid-method-removeProperty", + "shortDoc": "Removes a property from the grid. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "params": [ + { + "type": "String", + "optional": false, + "doc": "

The name of the property to remove

\n", + "name": "prop" + } + ], + "name": "removeProperty", + "owner": "Ext.grid.property.Grid", + "doc": "

Removes a property from the grid.

\n", + "linenr": 336, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Grid.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

\n", + "linenr": 1574, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "AbstractComponent.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\n

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

\n", + "linenr": 554, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Observable.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Table.html#Ext-panel-Table-method-scrollByDeltaX", + "shortDoc": "Scrolls the TablePanel by deltaX ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Number", + "optional": false, + "doc": "\n", + "name": "deltaY" + } + ], + "name": "scrollByDeltaX", + "owner": "Ext.panel.Table", + "doc": "

Scrolls the TablePanel by deltaX

\n", + "linenr": 1158, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Table.html#Ext-panel-Table-method-scrollByDeltaY", + "shortDoc": "Scrolls the TablePanel by deltaY ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Number", + "optional": false, + "doc": "\n", + "name": "deltaY" + } + ], + "name": "scrollByDeltaY", + "owner": "Ext.panel.Table", + "doc": "

Scrolls the TablePanel by deltaY

\n", + "linenr": 1146, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Animate.html#Ext-util-Animate-method-sequenceFx", + "shortDoc": "Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/util/Animate.js", + "private": false, + "params": [ + + ], + "name": "sequenceFx", + "owner": "Ext.util.Animate", + "doc": "

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

If a Window is superceded by another Window, deactivating it hides its shadow.

\n\n\n

This 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", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 600, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-hide", - "shortDoc": "

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

\n" - }, - { - "tagname": "event", - "name": "iconchange", - "member": "Ext.panel.Panel", - "doc": "

Fires after the Panel iconCls has been set or changed.

\n", - "params": [ - { - "type": "Ext.panel.Panel", - "name": "p", - "doc": "

the Panel which has been resized.

\n", - "optional": false - }, - { - "type": "String", - "name": "newIconCls", - "doc": "

The new iconCls.

\n", - "optional": false - }, - { - "type": "String", - "name": "oldIconCls", - "doc": "

The previous panel iconCls.

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 323, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-event-iconchange", - "shortDoc": "

Fires after the Panel iconCls has been set or changed.

\n" - }, - { - "tagname": "event", - "name": "itemclick", - "member": "Ext.panel.Table", - "doc": "

Fires when an item is clicked.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 385, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-itemclick", - "shortDoc": "

Fires when an item is clicked.

\n" - }, - { - "tagname": "event", - "name": "itemcontextmenu", - "member": "Ext.panel.Table", - "doc": "

Fires when an item is right clicked.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 405, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-itemcontextmenu", - "shortDoc": "

Fires when an item is right clicked.

\n" - }, - { - "tagname": "event", - "name": "itemdblclick", - "member": "Ext.panel.Table", - "doc": "

Fires when an item is double clicked.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 395, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-itemdblclick", - "shortDoc": "

Fires when an item is double clicked.

\n" - }, - { - "tagname": "event", - "name": "itemmousedown", - "member": "Ext.panel.Table", - "doc": "

Fires when there is a mouse down on an item

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 345, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-itemmousedown", - "shortDoc": "

Fires when there is a mouse down on an item

\n" - }, - { - "tagname": "event", - "name": "itemmouseenter", - "member": "Ext.panel.Table", - "doc": "

Fires when the mouse enters an item.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 365, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-itemmouseenter", - "shortDoc": "

Fires when the mouse enters an item.

\n" - }, - { - "tagname": "event", - "name": "itemmouseleave", - "member": "Ext.panel.Table", - "doc": "

Fires when the mouse leaves an item.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 375, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-itemmouseleave", - "shortDoc": "

Fires when the mouse leaves an item.

\n" - }, - { - "tagname": "event", - "name": "itemmouseup", - "member": "Ext.panel.Table", - "doc": "

Fires when there is a mouse up on an item

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.data.Model", - "name": "record", - "doc": "

The record that belongs to the item

\n", - "optional": false - }, - { - "type": "HTMLElement", - "name": "item", - "doc": "

The item's element

\n", - "optional": false - }, - { - "type": "Number", - "name": "index", - "doc": "

The item's index

\n", - "optional": false - }, - { - "type": "Ext.EventObject", - "name": "e", - "doc": "

The raw event object

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 355, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-itemmouseup", - "shortDoc": "

Fires when there is a mouse up on an item

\n" - }, - { - "tagname": "event", - "name": "move", - "member": "Ext.AbstractComponent", - "doc": "

Fires after the component is moved.

\n", - "params": [ - { + "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": "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:

\n", + "name": "height" + } + ], + "name": "setHeight", + "owner": "Ext.AbstractComponent", + "doc": "

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

\n", + "linenr": 2769, + "return": { "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Number", - "name": "x", - "doc": "

The new x position

\n", - "optional": false - }, - { - "type": "Number", - "name": "y", - "doc": "

The new y position

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 655, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-move", - "shortDoc": "

Fires after the component is moved.

\n" - }, - { - "tagname": "event", - "name": "propertychange", - "member": "Ext.grid.property.Grid", - "doc": "

Fires after a property value has changed.

\n", - "params": [ - { - "type": "Object", - "name": "source", - "doc": "

The source data object for the grid (corresponds to the same object passed in\nas the source config property).

\n", - "optional": false - }, - { - "type": "String", - "name": "recordId", - "doc": "

The record's id in the data store

\n", - "optional": false - }, - { - "type": "Mixed", - "name": "value", - "doc": "

The current edited property value

\n", - "optional": false - }, - { - "type": "Mixed", - "name": "oldValue", - "doc": "

The original property value prior to editing

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 180, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid-event-propertychange", - "shortDoc": "

Fires after a property value has changed.

\n" - }, - { - "tagname": "event", - "name": "remove", - "member": "Ext.container.AbstractContainer", - "doc": "

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

\n", - "params": [ - { - "type": "Ext.container.Container", - "name": "this", - "doc": "\n", - "optional": false - }, - { + "doc": "

this

\n" + }, + "html_filename": "AbstractComponent.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Panel2.html#Ext-panel-Panel-method-setIconCls", + "shortDoc": "Set the iconCls for the panel's header. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + { + "type": "String", + "optional": false, + "doc": "\n", + "name": "newIconCls" + } + ], + "name": "setIconCls", + "owner": "Ext.panel.Panel", + "doc": "

Set the iconCls for the panel's header. See Ext.panel.Header.iconCls.

\n", + "linenr": 459, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Panel2.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", - "name": "component", - "doc": "

The component that was removed

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js", - "linenr": 224, - "html_filename": "AbstractContainer.html", - "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-remove", - "shortDoc": "

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

\n" - }, - { - "tagname": "event", - "name": "removed", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { + "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", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Ext.container.Container", - "name": "ownerCt", - "doc": "

Container which holds the component

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 607, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-removed", - "shortDoc": "

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

\n" - }, - { - "tagname": "event", - "name": "render", - "member": "Ext.AbstractComponent", - "doc": "

Fires after the component markup is rendered.

\n", - "params": [ - { + "doc": "

this

\n" + }, + "html_filename": "Component2.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Grid.html#Ext-grid-property-Grid-method-setProperty", + "shortDoc": "Sets the value of a property. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "params": [ + { + "type": "String", + "optional": false, + "doc": "

The name of the property to set

\n", + "name": "prop" + }, + { + "type": "Mixed", + "optional": false, + "doc": "

The value to test

\n", + "name": "value" + }, + { + "type": "Boolean", + "optional": false, + "doc": "

(Optional) True to create the property if it doesn't already exist. Defaults to false.

\n", + "name": "create" + } + ], + "name": "setProperty", + "owner": "Ext.grid.property.Grid", + "doc": "

Sets the value of a property.

\n", + "linenr": 326, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Grid.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Table.html#Ext-panel-Table-method-setScrollTop", + "shortDoc": "Sets the scrollTop of the TablePanel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Number", + "optional": false, + "doc": "\n", + "name": "deltaY" + } + ], + "name": "setScrollTop", + "owner": "Ext.panel.Table", + "doc": "

Sets the scrollTop of the TablePanel.

\n", + "linenr": 1123, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.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:

\n", + "name": "width" + }, + { + "type": "Mixed", + "optional": false, + "doc": "

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

\n", + "name": "height" + } + ], + "name": "setSize", + "owner": "Ext.AbstractComponent", + "doc": "

Sets the width and height of this Component. This method fires the resize event. This method can accept\neither width and height as separate arguments, or you can pass a size object like {width:10, height:20}.

\n", + "linenr": 2507, + "return": { "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 621, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-render", - "shortDoc": "

Fires after the component markup is rendered.

\n" - }, - { - "tagname": "event", - "name": "resize", - "member": "Ext.AbstractComponent", - "doc": "

Fires after the component is resized.

\n", - "params": [ - { + "doc": "

this

\n" + }, + "html_filename": "AbstractComponent.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Grid.html#Ext-grid-property-Grid-method-setSource", + "shortDoc": "Sets the source data object containing the property data. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "params": [ + { + "type": "Object", + "optional": false, + "doc": "

The data object

\n", + "name": "source" + } + ], + "name": "setSource", + "owner": "Ext.grid.property.Grid", + "doc": "

Sets the source data object containing the property data. The data object can contain one or more name/value\npairs representing all of the properties of an object to display in the grid, and this data will automatically\nbe loaded into the grid's store. The values should be supplied in the proper data type if needed,\notherwise string type will be assumed. If the grid already contains data, this method will replace any\nexisting data. See also the source config value. Example usage:

\n\n
grid.setSource({\n    \"(name)\": \"My Object\",\n    \"Created\": Ext.Date.parse('10/15/2006', 'm/d/Y'),  // date type\n    \"Available\": false,  // boolean type\n    \"Version\": .01,      // decimal type\n    \"Description\": \"A test object\"\n});\n
\n\n", + "linenr": 295, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Grid.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Panel2.html#Ext-panel-Panel-method-setTitle", + "shortDoc": "Set a title for the panel's header. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + { + "type": "String", + "optional": false, + "doc": "\n", + "name": "newTitle" + } + ], + "name": "setTitle", + "owner": "Ext.panel.Panel", + "doc": "

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

\n", + "linenr": 438, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Panel2.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", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Number", - "name": "adjWidth", - "doc": "

The box-adjusted width that was set

\n", - "optional": false - }, - { - "type": "Number", - "name": "adjHeight", - "doc": "

The box-adjusted height that was set

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 647, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-resize", - "shortDoc": "

Fires after the component is resized.

\n" - }, - { - "tagname": "event", - "name": "scrollerhide", - "member": "Ext.panel.Table", - "doc": "

Fires when a scroller is hidden

\n", - "params": [ - { - "type": "Ext.grid.Scroller", - "name": "scroller", - "doc": "\n", - "optional": false - }, - { - "type": "String", - "name": "orientation", - "doc": "

Orientation, can be 'vertical' or 'horizontal'

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 160, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-scrollerhide", - "shortDoc": "

Fires when a scroller is hidden

\n" - }, - { - "tagname": "event", - "name": "scrollershow", - "member": "Ext.panel.Table", - "doc": "

Fires when a scroller is shown

\n", - "params": [ - { - "type": "Ext.grid.Scroller", - "name": "scroller", - "doc": "\n", - "optional": false - }, - { - "type": "String", - "name": "orientation", - "doc": "

Orientation, can be 'vertical' or 'horizontal'

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 167, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-scrollershow", - "shortDoc": "

Fires when a scroller is shown

\n" - }, - { - "tagname": "event", - "name": "selectionchange", - "member": "Ext.panel.Table", - "doc": "

Fires when the selected nodes change. Relayed event from the underlying selection model.

\n", - "params": [ - { - "type": "Ext.view.View", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Array", - "name": "selections", - "doc": "

Array of the selected nodes

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js", - "linenr": 507, - "html_filename": "Table2.html", - "href": "Table2.html#Ext-panel-Table-event-selectionchange", - "shortDoc": "

Fires when the selected nodes change. Relayed event from the underlying selection model.

\n" - }, - { - "tagname": "event", - "name": "show", - "member": "Ext.AbstractComponent", - "doc": "

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

\n", - "params": [ - { + "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:

\n", + "name": "width" + } + ], + "name": "setWidth", + "owner": "Ext.AbstractComponent", + "doc": "

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

\n", + "linenr": 2757, + "return": { "type": "Ext.Component", - "name": "this", - "doc": "\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js", - "linenr": 587, - "html_filename": "AbstractComponent.html", - "href": "AbstractComponent.html#Ext-AbstractComponent-event-show", - "shortDoc": "

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

\n" - }, - { - "tagname": "event", - "name": "staterestore", - "member": "Ext.state.Stateful", - "doc": "

Fires after the state of the object is restored.

\n", - "params": [ - { - "type": "Ext.state.Stateful", - "name": "this", - "doc": "\n", - "optional": false - }, - { - "type": "Object", - "name": "state", - "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", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 112, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-event-staterestore", - "shortDoc": "

Fires after the state of the object is restored.

\n" - }, - { - "tagname": "event", - "name": "statesave", - "member": "Ext.state.Stateful", - "doc": "

Fires after the state of the object is saved to the configured state provider.

\n", - "params": [ - { - "type": "Ext.state.Stateful", - "name": "this", - "doc": "\n", - "optional": false - }, - { + "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)

\n", + "name": "animateTarget" + }, + { + "type": "Function", + "optional": true, + "doc": "

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

\n", + "name": "scope" + } + ], + "name": "show", + "owner": "Ext.Component", + "doc": "

Shows this Component, rendering it first if autoRender or floating are true.

\n\n\n

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": false, + "tagname": "method", + "href": "Table.html#Ext-panel-Table-method-showHorizontalScroller", + "shortDoc": "Show the horizontalScroller and add the horizontalScrollerPresentCls. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "showHorizontalScroller", + "owner": "Ext.panel.Table", + "doc": "

Show the horizontalScroller and add the horizontalScrollerPresentCls.

\n", + "linenr": 973, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Table.html#Ext-panel-Table-method-showVerticalScroller", + "shortDoc": "Show the verticalScroller and add the verticalScrollerPresentCls. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + + ], + "name": "showVerticalScroller", + "owner": "Ext.panel.Table", + "doc": "

Show the verticalScroller and add the verticalScrollerPresentCls.

\n", + "linenr": 1003, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Table.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

\n\n
Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n\n        return this;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n
\n", + "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", - "name": "state", - "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", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js", - "linenr": 133, - "html_filename": "Stateful.html", - "href": "Stateful.html#Ext-state-Stateful-event-statesave", - "shortDoc": "

Fires after the state of the object is saved to the configured state provider.

\n" - }, - { - "tagname": "event", - "name": "titlechange", - "member": "Ext.panel.Panel", - "doc": "

Fires after the Panel title has been set or changed.

\n", - "params": [ - { + "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.

\n", + "name": "preventFocus" + } + ], + "name": "toFront", + "owner": "Ext.util.Floating", + "doc": "

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

\n\n\n

If 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": null, + "protected": false, + "tagname": "method", + "href": "Panel2.html#Ext-panel-Panel-method-toggleCollapse", + "shortDoc": "Shortcut for performing an expand or collapse based on the current state of the panel. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + + ], + "name": "toggleCollapse", + "owner": "Ext.panel.Panel", + "doc": "

Shortcut for performing an expand or collapse based on the current state of the panel.

\n", + "linenr": 1366, + "return": { "type": "Ext.panel.Panel", - "name": "p", - "doc": "

the Panel which has been resized.

\n", - "optional": false - }, - { - "type": "String", - "name": "newTitle", - "doc": "

The new title.

\n", - "optional": false - }, - { - "type": "String", - "name": "oldTitle", - "doc": "

The previous panel title.

\n", - "optional": false - } - ], - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js", - "linenr": 315, - "html_filename": "Panel3.html", - "href": "Panel3.html#Ext-panel-Panel-event-titlechange", - "shortDoc": "

Fires after the Panel title has been set or changed.

\n" - } - ], - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js", - "linenr": 1, - "html_filename": "Grid.html", - "href": "Grid.html#Ext-grid-property-Grid", - "cssVar": [ + "doc": "

this

\n" + }, + "html_filename": "Panel2.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\n

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

\n\n\n

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

\n" + }, + "html_filename": "AbstractComponent.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "AbstractComponent.html#Ext-AbstractComponent-method-update", + "shortDoc": "Update the content area of a component. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/AbstractComponent.js", + "private": false, + "params": [ + { + "type": "Mixed", + "optional": false, + "doc": "

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": "Ext.dd.DragSource.", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "property", + "href": "Panel2.html#Ext-panel-Panel-property-dd", + "shortDoc": "If this Panel is configured draggable, this property will contain\nan instance of Ext.dd.DragSource which handles drag...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "name": "dd", + "owner": "Ext.panel.Panel", + "doc": "

If this Panel is configured draggable, this property will contain\nan instance of Ext.dd.DragSource which handles dragging the Panel.

\n\n\n

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

\n", + "linenr": 1389, + "html_filename": "Panel2.html" + }, + { + "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\n

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

\n\n\n

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

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

\n\n\n

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

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

\n\n\n
\n\n", + "linenr": 228, + "html_filename": "AbstractComponent.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "property", + "href": "Table.html#Ext-panel-Table-property-hasView", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "name": "hasView", + "owner": "Ext.panel.Table", + "doc": "

Boolean to indicate that a view has been injected into the panel.

\n", + "linenr": 32, + "html_filename": "Table.html" + }, + { + "type": "Ext.util.MixedCollection", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "property", + "href": "AbstractContainer2.html#Ext-container-AbstractContainer-property-items", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/container/AbstractContainer.js", + "private": false, + "name": "items", + "owner": "Ext.container.AbstractContainer", + "doc": "

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

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

\n\n
Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); / dependent on 'this'\n\n        return this;\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n
\n", + "linenr": 18, + "html_filename": "Base3.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\n

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

\n\n\n

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

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

\n\n\n

This defaults to the global ZIndexManager for floating Components that are programatically\nrendered.

\n\n\n

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

See floating and floatParent

\n\n", + "linenr": 209, + "html_filename": "Component2.html" + } + ], + "cssVar": [ - ], - "cssMixin": [ + ], + "cssMixin": [ - ], - "component": true, + ], + "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\n

The 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": "Panel2.html#Ext-panel-Panel-event-beforecollapse", + "shortDoc": "Fires before this panel is collapsed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + { + "type": "Ext.panel.Panel", + "optional": false, + "doc": "

The Panel being collapsed.

\n", + "name": "p" + }, + { + "type": "String", + "optional": false, + "doc": "

. The direction of the collapse. One of

\n", + "name": "direction" + }, + { + "type": "Boolean", + "optional": false, + "doc": "

True if the collapse is animated, else false.

\n", + "name": "animate" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforecollapse", + "owner": "Ext.panel.Panel", + "doc": "

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

\n", + "linenr": 327, + "html_filename": "Panel2.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforecontainerclick", + "shortDoc": "Fires before the click event on the container is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforecontainerclick", + "owner": "Ext.panel.Table", + "doc": "

Fires before the click event on the container is processed. Returns false to cancel the default action.

\n", + "linenr": 457, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforecontainercontextmenu", + "shortDoc": "Fires before the contextmenu event on the container is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforecontainercontextmenu", + "owner": "Ext.panel.Table", + "doc": "

Fires before the contextmenu event on the container is processed. Returns false to cancel the default action.

\n", + "linenr": 471, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforecontainerdblclick", + "shortDoc": "Fires before the dblclick event on the container is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforecontainerdblclick", + "owner": "Ext.panel.Table", + "doc": "

Fires before the dblclick event on the container is processed. Returns false to cancel the default action.

\n", + "linenr": 464, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforecontainermousedown", + "shortDoc": "Fires before the mousedown event on the container is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforecontainermousedown", + "owner": "Ext.panel.Table", + "doc": "

Fires before the mousedown event on the container is processed. Returns false to cancel the default action.

\n", + "linenr": 429, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforecontainermouseout", + "shortDoc": "Fires before the mouseout event on the container is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforecontainermouseout", + "owner": "Ext.panel.Table", + "doc": "

Fires before the mouseout event on the container is processed. Returns false to cancel the default action.

\n", + "linenr": 450, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforecontainermouseover", + "shortDoc": "Fires before the mouseover event on the container is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforecontainermouseover", + "owner": "Ext.panel.Table", + "doc": "

Fires before the mouseover event on the container is processed. Returns false to cancel the default action.

\n", + "linenr": 443, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforecontainermouseup", + "shortDoc": "Fires before the mouseup event on the container is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforecontainermouseup", + "owner": "Ext.panel.Table", + "doc": "

Fires before the mouseup event on the container is processed. Returns false to cancel the default action.

\n", + "linenr": 436, + "html_filename": "Table.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": "Panel2.html#Ext-panel-Panel-event-beforeexpand", + "shortDoc": "Fires before this panel is expanded. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + { + "type": "Ext.panel.Panel", + "optional": false, + "doc": "

The Panel being expanded.

\n", + "name": "p" + }, + { + "type": "Boolean", + "optional": false, + "doc": "

True if the expand is animated, else false.

\n", + "name": "animate" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforeexpand", + "owner": "Ext.panel.Panel", + "doc": "

Fires before this panel is expanded. Return false to prevent the expand.

\n", + "linenr": 319, + "html_filename": "Panel2.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": "Table.html#Ext-panel-Table-event-beforeitemclick", + "shortDoc": "Fires before the click event on an item is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforeitemclick", + "owner": "Ext.panel.Table", + "doc": "

Fires before the click event on an item is processed. Returns false to cancel the default action.

\n", + "linenr": 329, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforeitemcontextmenu", + "shortDoc": "Fires before the contextmenu event on an item is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforeitemcontextmenu", + "owner": "Ext.panel.Table", + "doc": "

Fires before the contextmenu event on an item is processed. Returns false to cancel the default action.

\n", + "linenr": 349, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforeitemdblclick", + "shortDoc": "Fires before the dblclick event on an item is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforeitemdblclick", + "owner": "Ext.panel.Table", + "doc": "

Fires before the dblclick event on an item is processed. Returns false to cancel the default action.

\n", + "linenr": 339, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforeitemmousedown", + "shortDoc": "Fires before the mousedown event on an item is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforeitemmousedown", + "owner": "Ext.panel.Table", + "doc": "

Fires before the mousedown event on an item is processed. Returns false to cancel the default action.

\n", + "linenr": 289, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforeitemmouseenter", + "shortDoc": "Fires before the mouseenter event on an item is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforeitemmouseenter", + "owner": "Ext.panel.Table", + "doc": "

Fires before the mouseenter event on an item is processed. Returns false to cancel the default action.

\n", + "linenr": 309, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforeitemmouseleave", + "shortDoc": "Fires before the mouseleave event on an item is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforeitemmouseleave", + "owner": "Ext.panel.Table", + "doc": "

Fires before the mouseleave event on an item is processed. Returns false to cancel the default action.

\n", + "linenr": 319, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-beforeitemmouseup", + "shortDoc": "Fires before the mouseup event on an item is processed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforeitemmouseup", + "owner": "Ext.panel.Table", + "doc": "

Fires before the mouseup event on an item is processed. Returns false to cancel the default action.

\n", + "linenr": 299, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Grid.html#Ext-grid-property-Grid-event-beforepropertychange", + "shortDoc": "Fires before a property value changes. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "params": [ + { + "type": "Object", + "optional": false, + "doc": "

The source data object for the grid (corresponds to the same object passed in\nas the source config property).

\n", + "name": "source" + }, + { + "type": "String", + "optional": false, + "doc": "

The record's id in the data store

\n", + "name": "recordId" + }, + { + "type": "Mixed", + "optional": false, + "doc": "

The current edited property value

\n", + "name": "value" + }, + { + "type": "Mixed", + "optional": false, + "doc": "

The original property value prior to editing

\n", + "name": "oldValue" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforepropertychange", + "owner": "Ext.grid.property.Grid", + "doc": "

Fires before a property value changes. Handlers can return false to cancel the property change\n(this will internally call Ext.data.Model.reject on the property's record).

\n", + "linenr": 171, + "html_filename": "Grid.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": "Table.html#Ext-panel-Table-event-beforeselect", + "shortDoc": "Fires before a selection is made. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The node to be selected

\n", + "name": "node" + }, + { + "type": "Array", + "optional": false, + "doc": "

Array of currently selected nodes

\n", + "name": "selections" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "beforeselect", + "owner": "Ext.panel.Table", + "doc": "

Fires before a selection is made. If any handlers return false, the selection is cancelled.

\n", + "linenr": 528, + "html_filename": "Table.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": "AbstractPanel.html#Ext-panel-AbstractPanel-event-bodyresize", + "shortDoc": "Fires after the Panel has been resized. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/panel/AbstractPanel.js", + "private": false, + "params": [ + { + "type": "Ext.panel.Panel", + "optional": false, + "doc": "

the Panel which has been resized.

\n", + "name": "p" + }, + { + "type": "Number", + "optional": false, + "doc": "

The Panel body's new width.

\n", + "name": "width" + }, + { + "type": "Number", + "optional": false, + "doc": "

The Panel body's new height.

\n", + "name": "height" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "bodyresize", + "owner": "Ext.panel.AbstractPanel", + "doc": "

Fires after the Panel has been resized.

\n", + "linenr": 121, + "html_filename": "AbstractPanel.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": "Panel2.html#Ext-panel-Panel-event-collapse", + "shortDoc": "Fires after this Panel hass collapsed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + { + "type": "Ext.panel.Panel", + "optional": false, + "doc": "

The Panel that has been collapsed.

\n", + "name": "p" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "collapse", + "owner": "Ext.panel.Panel", + "doc": "

Fires after this Panel hass collapsed.

\n", + "linenr": 347, + "html_filename": "Panel2.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-containerclick", + "shortDoc": "Fires when the container is clicked. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "containerclick", + "owner": "Ext.panel.Table", + "doc": "

Fires when the container is clicked.

\n", + "linenr": 499, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-containercontextmenu", + "shortDoc": "Fires when the container is right clicked. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "containercontextmenu", + "owner": "Ext.panel.Table", + "doc": "

Fires when the container is right clicked.

\n", + "linenr": 513, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-containerdblclick", + "shortDoc": "Fires when the container is double clicked. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "containerdblclick", + "owner": "Ext.panel.Table", + "doc": "

Fires when the container is double clicked.

\n", + "linenr": 506, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-containermouseout", + "shortDoc": "Fires when you move the mouse out of the container. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "containermouseout", + "owner": "Ext.panel.Table", + "doc": "

Fires when you move the mouse out of the container.

\n", + "linenr": 492, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-containermouseover", + "shortDoc": "Fires when you move the mouse over the container. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "containermouseover", + "owner": "Ext.panel.Table", + "doc": "

Fires when you move the mouse over the container.

\n", + "linenr": 485, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-containermouseup", + "shortDoc": "Fires when there is a mouse up on the container ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "containermouseup", + "owner": "Ext.panel.Table", + "doc": "

Fires when there is a mouse up on the container

\n", + "linenr": 478, + "html_filename": "Table.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": "Panel2.html#Ext-panel-Panel-event-expand", + "shortDoc": "Fires after this Panel has expanded. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + { + "type": "Ext.panel.Panel", + "optional": false, + "doc": "

The Panel that has been expanded.

\n", + "name": "p" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "expand", + "owner": "Ext.panel.Panel", + "doc": "

Fires after this Panel has expanded.

\n", + "linenr": 340, + "html_filename": "Panel2.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": "Panel2.html#Ext-panel-Panel-event-iconchange", + "shortDoc": "Fires after the Panel iconCls has been set or changed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + { + "type": "Ext.panel.Panel", + "optional": false, + "doc": "

the Panel which has been resized.

\n", + "name": "p" + }, + { + "type": "String", + "optional": false, + "doc": "

The new iconCls.

\n", + "name": "newIconCls" + }, + { + "type": "String", + "optional": false, + "doc": "

The previous panel iconCls.

\n", + "name": "oldIconCls" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "iconchange", + "owner": "Ext.panel.Panel", + "doc": "

Fires after the Panel iconCls has been set or changed.

\n", + "linenr": 363, + "html_filename": "Panel2.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-itemclick", + "shortDoc": "Fires when an item is clicked. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "itemclick", + "owner": "Ext.panel.Table", + "doc": "

Fires when an item is clicked.

\n", + "linenr": 399, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-itemcontextmenu", + "shortDoc": "Fires when an item is right clicked. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "itemcontextmenu", + "owner": "Ext.panel.Table", + "doc": "

Fires when an item is right clicked.

\n", + "linenr": 419, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-itemdblclick", + "shortDoc": "Fires when an item is double clicked. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "itemdblclick", + "owner": "Ext.panel.Table", + "doc": "

Fires when an item is double clicked.

\n", + "linenr": 409, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-itemmousedown", + "shortDoc": "Fires when there is a mouse down on an item ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "itemmousedown", + "owner": "Ext.panel.Table", + "doc": "

Fires when there is a mouse down on an item

\n", + "linenr": 359, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-itemmouseenter", + "shortDoc": "Fires when the mouse enters an item. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "itemmouseenter", + "owner": "Ext.panel.Table", + "doc": "

Fires when the mouse enters an item.

\n", + "linenr": 379, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-itemmouseleave", + "shortDoc": "Fires when the mouse leaves an item. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "itemmouseleave", + "owner": "Ext.panel.Table", + "doc": "

Fires when the mouse leaves an item.

\n", + "linenr": 389, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-itemmouseup", + "shortDoc": "Fires when there is a mouse up on an item ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Ext.data.Model", + "optional": false, + "doc": "

The record that belongs to the item

\n", + "name": "record" + }, + { + "type": "HTMLElement", + "optional": false, + "doc": "

The item's element

\n", + "name": "item" + }, + { + "type": "Number", + "optional": false, + "doc": "

The item's index

\n", + "name": "index" + }, + { + "type": "Ext.EventObject", + "optional": false, + "doc": "

The raw event object

\n", + "name": "e" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "itemmouseup", + "owner": "Ext.panel.Table", + "doc": "

Fires when there is a mouse up on an item

\n", + "linenr": 369, + "html_filename": "Table.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": "Grid.html#Ext-grid-property-Grid-event-propertychange", + "shortDoc": "Fires after a property value has changed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "params": [ + { + "type": "Object", + "optional": false, + "doc": "

The source data object for the grid (corresponds to the same object passed in\nas the source config property).

\n", + "name": "source" + }, + { + "type": "String", + "optional": false, + "doc": "

The record's id in the data store

\n", + "name": "recordId" + }, + { + "type": "Mixed", + "optional": false, + "doc": "

The current edited property value

\n", + "name": "value" + }, + { + "type": "Mixed", + "optional": false, + "doc": "

The original property value prior to editing

\n", + "name": "oldValue" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "propertychange", + "owner": "Ext.grid.property.Grid", + "doc": "

Fires after a property value has changed.

\n", + "linenr": 182, + "html_filename": "Grid.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-reconfigure", + "shortDoc": "Fires after a reconfigure ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.panel.Table", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "reconfigure", + "owner": "Ext.panel.Table", + "doc": "

Fires after a reconfigure

\n", + "linenr": 184, + "html_filename": "Table.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": "Table.html#Ext-panel-Table-event-scrollerhide", + "shortDoc": "Fires when a scroller is hidden ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.grid.Scroller", + "optional": false, + "doc": "\n", + "name": "scroller" + }, + { + "type": "String", + "optional": false, + "doc": "

Orientation, can be 'vertical' or 'horizontal'

\n", + "name": "orientation" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "scrollerhide", + "owner": "Ext.panel.Table", + "doc": "

Fires when a scroller is hidden

\n", + "linenr": 190, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-scrollershow", + "shortDoc": "Fires when a scroller is shown ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.grid.Scroller", + "optional": false, + "doc": "\n", + "name": "scroller" + }, + { + "type": "String", + "optional": false, + "doc": "

Orientation, can be 'vertical' or 'horizontal'

\n", + "name": "orientation" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "scrollershow", + "owner": "Ext.panel.Table", + "doc": "

Fires when a scroller is shown

\n", + "linenr": 197, + "html_filename": "Table.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Table.html#Ext-panel-Table-event-selectionchange", + "shortDoc": "Fires when the selected nodes change. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Table.js", + "private": false, + "params": [ + { + "type": "Ext.view.View", + "optional": false, + "doc": "\n", + "name": "this" + }, + { + "type": "Array", + "optional": false, + "doc": "

Array of the selected nodes

\n", + "name": "selections" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "selectionchange", + "owner": "Ext.panel.Table", + "doc": "

Fires when the selected nodes change. Relayed event from the underlying selection model.

\n", + "linenr": 521, + "html_filename": "Table.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": "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" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "event", + "href": "Panel2.html#Ext-panel-Panel-event-titlechange", + "shortDoc": "Fires after the Panel title has been set or changed. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/panel/Panel.js", + "private": false, + "params": [ + { + "type": "Ext.panel.Panel", + "optional": false, + "doc": "

the Panel which has been resized.

\n", + "name": "p" + }, + { + "type": "String", + "optional": false, + "doc": "

The new title.

\n", + "name": "newTitle" + }, + { + "type": "String", + "optional": false, + "doc": "

The previous panel title.

\n", + "name": "oldTitle" + }, + { + "type": "Object", + "tagname": "param", + "name": "options", + "doc": "

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

\n" + } + ], + "name": "titlechange", + "owner": "Ext.panel.Panel", + "doc": "

Fires after the Panel title has been set or changed.

\n", + "linenr": 354, + "html_filename": "Panel2.html" + } + ] + }, + "singleton": false, + "alias": null, "superclasses": [ + "Ext.Base", "Ext.AbstractComponent", "Ext.Component", "Ext.container.AbstractContainer", @@ -7124,16 +9538,32 @@ Ext.data.JsonP.Ext_grid_property_Grid({ "Ext.panel.Table", "Ext.grid.Panel" ], + "protected": false, + "tagname": "class", + "mixins": [ + + ], + "href": "Grid.html#Ext-grid-property-Grid", "subclasses": [ ], + "static": false, + "author": null, + "component": true, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Grid.js", + "private": false, + "alternateClassNames": [ + "Ext.grid.PropertyGrid" + ], + "name": "Ext.grid.property.Grid", + "doc": "

A specialized grid implementation intended to mimic the traditional property grid as typically seen in\ndevelopment IDEs. Each row in the grid represents a property of some object, and the data is stored\nas a set of name/value pairs in Properties. Example usage:

\n\n
var grid = new Ext.grid.property.Grid({\n    title: 'Properties Grid',\n    width: 300,\n    renderTo: 'grid-ct',\n    source: {\n        \"(name)\": \"My Object\",\n        \"Created\": Ext.Date.parse('10/15/2006', 'm/d/Y'),\n        \"Available\": false,\n        \"Version\": .01,\n        \"Description\": \"A test object\"\n    }\n});\n
\n\n", "mixedInto": [ ], - "allMixins": [ - "Ext.util.Floating", - "Ext.util.Observable", - "Ext.util.Animate", - "Ext.state.Stateful" - ] + "linenr": 1, + "xtypes": [ + "propertygrid" + ], + "html_filename": "Grid.html", + "extends": "Ext.grid.Panel" }); \ No newline at end of file