Ext.data.JsonP.Ext_dom_AbstractElement({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":["Ext.dom.Element"],"extends":"Ext.Base","uses":[],"html":"

Hierarchy

Ext.Base
Ext.dom.AbstractElement

Requires

Ext.dom.AbstractElement_insertion
Ext.dom.AbstractElement_static
Ext.dom.AbstractElement_style
Ext.dom.AbstractElement_traversal

Subclasses

Files

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

\n

Properties

Defined By

Instance Properties

...
\n

Defaults to: 'Ext.Base'

...
\n

Defaults to: {}

Ext.dom.AbstractElement
view source
: String
The default unit to append to CSS values where a unit isn't provided. ...

The default unit to append to CSS values where a unit isn't provided.

\n\n

Overridden in Ext.dom.AbstractElement_static.

\n

Defaults to: "px"

Ext.dom.AbstractElement
view source
dom : HTMLElement

The DOM element

\n

The DOM element

\n
Ext.dom.AbstractElement
view source
id : String

The DOM element ID

\n

The DOM element ID

\n
...
\n

Defaults to: []

...
\n

Defaults to: {}

...
\n

Defaults to: true

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

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

\n\n
Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); // dependent on 'this'\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n
\n
Ext.dom.AbstractElement
view source
: Objectprivate
This shared object is keyed by style name (e.g., 'margin-left' or 'marginLeft'). ...

This shared object is keyed by style name (e.g., 'margin-left' or 'marginLeft'). The\nvalues are objects with the following properties:

\n\n
    \n
  • name (String) : The actual name to be presented to the DOM. This is typically the value\n returned by normalize.
  • \n
  • get (Function) : A hook function that will perform the get on this style. These\n functions receive \"(dom, el)\" arguments. The dom parameter is the DOM Element\n from which to get ths tyle. The el argument (may be null) is the Ext.Element.
  • \n
  • set (Function) : A hook function that will perform the set on this style. These\n functions receive \"(dom, value, el)\" arguments. The dom parameter is the DOM Element\n from which to get ths tyle. The value parameter is the new value for the style. The\n el argument (may be null) is the Ext.Element.
  • \n
\n\n\n

The this pointer is the object that contains get or set, which means that\nthis.name can be accessed if needed. The hook functions are both optional.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Defaults to: {}

Defined By

Static Properties

...
\n

Defaults to: []

Ext.dom.AbstractElement
view source
: Numberstatic
Visibility mode constant for use with Ext.dom.Element.setVisibilityMode. ...

Visibility mode constant for use with Ext.dom.Element.setVisibilityMode.\nAdd or remove the Ext.Layer.visibilityCls class to hide the element.

\n

Defaults to: 4

Ext.dom.AbstractElement
view source
: Numberstatic
Visibility mode constant for use with Ext.dom.Element.setVisibilityMode. ...

Visibility mode constant for use with Ext.dom.Element.setVisibilityMode.\nUse the CSS 'display' property to hide the element.

\n

Defaults to: 2

Ext.dom.AbstractElement
view source
: Numberstatic
Visibility mode constant for use with Ext.dom.Element.setVisibilityMode. ...

Visibility mode constant for use with Ext.dom.Element.setVisibilityMode.\nUse CSS absolute positioning and top/left offsets to hide the element.

\n

Defaults to: 3

Ext.dom.AbstractElement
view source
: Numberstatic
Visibility mode constant for use with Ext.dom.Element.setVisibilityMode. ...

Visibility mode constant for use with Ext.dom.Element.setVisibilityMode.\nUse the CSS 'visibility' property to hide the element.

\n\n

Note that in this mode, isVisible may return true\nfor an element even though it actually has a parent element that is hidden. For this\nreason, and in most cases, using the OFFSETS mode is a better choice.

\n

Defaults to: 1

Ext.dom.AbstractElement
view source
: Objectprivatestatic
Defined in override Ext.dom.AbstractElement_static. ...

Defined in override Ext.dom.AbstractElement_static.

\n

Defaults to: {l: 'border-left-width', r: 'border-right-width', t: 'border-top-width', b: 'border-bottom-width'}

Ext.dom.AbstractElement
view source
: RegExpprivatestatic
Defined in override Ext.dom.AbstractElement_static. ...

Defined in override Ext.dom.AbstractElement_static.

\n

Defaults to: /(-[a-z])/gi

Ext.dom.AbstractElement
view source
: RegExpprivatestatic
Defined in override Ext.dom.AbstractElement_static. ...

Defined in override Ext.dom.AbstractElement_static.

\n

Defaults to: /([a-z0-9\\-]+)\\s*:\\s*([^;\\s]+(?:\\s*[^;\\s]+)*)?;?/gi

Ext.dom.AbstractElement
view source
: Objectprivatestatic
Defined in override Ext.dom.AbstractElement_static. ...

Defined in override Ext.dom.AbstractElement_static.

\n

Defaults to: {l: 'margin-left', r: 'margin-right', t: 'margin-top', b: 'margin-bottom'}

Ext.dom.AbstractElement
view source
: RegExpprivatestatic
Defined in override Ext.dom.AbstractElement_static. ...

Defined in override Ext.dom.AbstractElement_static.

\n

Defaults to: /^-ms-/

Ext.dom.AbstractElement
view source
: RegExpprivatestatic
Defined in override Ext.dom.AbstractElement_static. ...

Defined in override Ext.dom.AbstractElement_static.

\n

Defaults to: /alpha\\(opacity=(.*)\\)/i

Ext.dom.AbstractElement
view source
: Objectprivatestatic
Defined in override Ext.dom.AbstractElement_static. ...

Defined in override Ext.dom.AbstractElement_static.

\n

Defaults to: {l: 'padding-left', r: 'padding-right', t: 'padding-top', b: 'padding-bottom'}

Ext.dom.AbstractElement
view source
: Objectprivatestatic
Defined in override Ext.dom.AbstractElement_static. ...

Defined in override Ext.dom.AbstractElement_static.

\n

Defaults to: {}

Ext.dom.AbstractElement
view source
: RegExpprivatestatic
...
\n

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

Ext.dom.AbstractElement
view source
: RegExpprivatestatic
Defined in override Ext.dom.AbstractElement_static. ...

Defined in override Ext.dom.AbstractElement_static.

\n

Defaults to: /\\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i

Ext.dom.AbstractElement
view source
: RegExpprivatestatic
...
\n

Defaults to: /\\s/

Methods

Defined By

Instance Methods

Ext.dom.AbstractElement
view source
new( element, forceNew ) : Ext.dom.AbstractElement
...
\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( className ) : Ext.dom.Element
Adds one or more CSS classes to the element. ...

Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • className : String/String[]

    The CSS classes to add separated by space, or an array of classes

    \n

Returns

Ext.dom.AbstractElement
view source
( el, [returnDom] ) : Ext.dom.AbstractElement
Appends the passed element(s) to this element\n\nDefined in override Ext.dom.AbstractElement_insertion. ...

Appends the passed element(s) to this element

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( el ) : Ext.dom.AbstractElementchainable
Appends this element to the passed element\n\nDefined in override Ext.dom.AbstractElement_insertion. ...

Appends this element to the passed element

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( styles ) : Ext.dom.Element
More flexible version of setStyle for setting style properties. ...

More flexible version of setStyle for setting style properties.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • styles : String/Object/Function

    A style specification string, e.g. \"width:100px\", or object in the form {width:\"100px\"}, or\na function which returns such a specification.

    \n

Returns

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

Call the original method that was previously overridden with override

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

This method has been deprecated

\n

as of 4.1. Use callParent instead.

\n\n
\n

Parameters

  • args : Array/Arguments

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

    \n

Returns

  • Object

    Returns the result of calling the overridden method

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

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

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

This can be used with an override as follows:

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

This also works with static methods.

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

Lastly, it also works with overridden static methods.

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

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

\n

Parameters

  • args : Array/Arguments

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

    \n

Returns

  • Object

    Returns the result of calling the parent method

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

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

\n\n

Consider:

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

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

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

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

\n

Parameters

  • args : Array/Arguments

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

    \n

Returns

  • Object

    Returns the result of calling the superclass method

    \n
Ext.dom.AbstractElement
view source
( selector, [returnDom] ) : HTMLElement/Ext.dom.Element
Selects a single direct child based on the passed CSS selector (the selector should not contain an id). ...

Selects a single direct child based on the passed CSS selector (the selector should not contain an id).

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String

    The CSS selector

    \n
  • returnDom : Boolean (optional)

    True to return the DOM node instead of Ext.dom.Element.

    \n

    Defaults to: false

Returns

Ext.dom.AbstractElement
view source
( el ) : Boolean
Returns true if this element is an ancestor of the passed element ...

Returns true if this element is an ancestor of the passed element

\n

Parameters

  • el : HTMLElement/String

    The element to check

    \n

Returns

  • Boolean

    True if this element is an ancestor of el, else false

    \n
Ext.dom.AbstractElement
view source
( config, [insertBefore], [returnDom] ) : Ext.dom.AbstractElement
Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child e...

Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

  • config : Object

    DomHelper element config object. If no tag is specified (e.g., {tag:'input'}) then a div will be\nautomatically generated with the specified attributes.

    \n
  • insertBefore : HTMLElement (optional)

    a child element of this element

    \n
  • returnDom : Boolean (optional)

    true to return the dom node instead of creating an Element

    \n

    Defaults to: false

Returns

Ext.dom.AbstractElement
view source
( )
Alias to remove. ...

Alias to remove.

\n\n

Removes this element's dom reference. Note that event and cache removal is handled at Ext.removeNode

\n

Overrides: Ext.Base.destroy

Ext.dom.AbstractElement
view source
( selector, [returnDom] ) : HTMLElement/Ext.dom.Element
Selects a single child at any depth below this element based on the passed CSS selector (the selector should not cont...

Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( selector, [limit], [returnEl] ) : HTMLElement
Looks at this node and then at parent nodes for a match of the passed simple selector (e.g. ...

Looks at this node and then at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String

    The simple selector to test

    \n
  • limit : Number/String/HTMLElement/Ext.Element (optional)

    The max depth to search as a number or an element which causes the upward traversal to stop\nand is not considered for inclusion as the result. (defaults to 50 || document.documentElement)

    \n
  • returnEl : Boolean (optional)

    True to return a Ext.Element object instead of DOM node

    \n

    Defaults to: false

Returns

  • HTMLElement

    The matching DOM node (or null if no match was found)

    \n
Ext.dom.AbstractElement
view source
( selector, [limit], [returnEl] ) : HTMLElement
Looks at parent nodes for a match of the passed simple selector (e.g. ...

Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String

    The simple selector to test

    \n
  • limit : Number/String/HTMLElement/Ext.Element (optional)

    The max depth to search as a number or an element which causes the upward traversal to stop\nand is not considered for inclusion as the result. (defaults to 50 || document.documentElement)

    \n
  • returnEl : Boolean (optional)

    True to return a Ext.Element object instead of DOM node

    \n

    Defaults to: false

Returns

  • HTMLElement

    The matching DOM node (or null if no match was found)

    \n
Ext.dom.AbstractElement
view source
( [selector], [returnDom] ) : Ext.dom.Element/HTMLElement
Gets the first child, skipping text nodes\n\nDefined in override Ext.dom.AbstractElement_traversal. ...

Gets the first child, skipping text nodes

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String (optional)

    Find the next sibling that matches the passed simple selector

    \n
  • returnDom : Boolean (optional)

    True to return a raw dom node instead of an Ext.dom.Element

    \n

    Defaults to: false

Returns

Ext.dom.AbstractElement
view source
( ) : HTMLElement
Returns the active element in the DOM. ...

Returns the active element in the DOM. If the browser supports activeElement\non the document, this is returned. If not, the focus is tracked and the active\nelement is maintained internally.

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Returns

  • HTMLElement

    The active (focused) element in the document.

    \n
Ext.dom.AbstractElement
view source
( name, [namespace] ) : String
Returns the value of an attribute from the element's underlying DOM node. ...

Returns the value of an attribute from the element's underlying DOM node.

\n

Parameters

  • name : String

    The attribute name

    \n
  • namespace : String (optional)

    The namespace in which to look for the attribute

    \n

Returns

Ext.dom.AbstractElement
view source
( side ) : Number
Gets the width of the border(s) for the specified side(s)\n\nDefined in override Ext.dom.AbstractElement_style. ...

Gets the width of the border(s) for the specified side(s)

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • side : String

    Can be t, l, r, b or any combination of those to add multiple values. For example,\npassing 'lr' would get the border left width + the border right width.

    \n

Returns

  • Number

    The width of the sides passed added together

    \n
Ext.dom.AbstractElement
view source
( id, [asDom] )
Returns a child element of this element given its id. ...

Returns a child element of this element given its id.

\n

Parameters

  • id : String

    The id of the desired child element.

    \n
  • asDom : Boolean (optional)

    True to return the DOM element, false to return a\nwrapped Element object.

    \n

    Defaults to: false

Ext.dom.AbstractElement
view source
( )private
...
\n
...
\n

Parameters

Ext.dom.AbstractElement
view source
( )
Returns the innerHTML of an Element or an empty string if the element's\ndom no longer exists. ...

Returns the innerHTML of an Element or an empty string if the element's\ndom no longer exists.

\n
Ext.dom.AbstractElement
view source
( [contentHeight] ) : Number
Returns the offset height of the element\n\nDefined in override Ext.dom.AbstractElement_style. ...

Returns the offset height of the element

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • contentHeight : Boolean (optional)

    true to get the height minus borders and padding

    \n

Returns

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

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

\n

Parameters

  • name : String (optional)

    Name of the config option to return.

    \n

Returns

  • Object/Mixed

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

    \n
Ext.dom.AbstractElement
view source
( [sides] ) : Object/Number
Returns an object with properties top, left, right and bottom representing the margins of this element unless sides i...

Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,\nthen it returns the calculated width of the sides (see getPadding)

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • sides : String (optional)

    Any combination of l, r, t, b to get the sum of those sides

    \n

Returns

Ext.dom.AbstractElement
view source
( side ) : Number
Gets the width of the padding(s) for the specified side(s)\n\nDefined in override Ext.dom.AbstractElement_style. ...

Gets the width of the padding(s) for the specified side(s)

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • side : String

    Can be t, l, r, b or any combination of those to add multiple values. For example,\npassing 'lr' would get the padding left + the padding right.

    \n

Returns

  • Number

    The padding of the sides passed added together

    \n
Ext.dom.AbstractElement
view source
( target )private
Creates a function to call to clean up problems with the work-around for the\nWebKit RightMargin bug. ...

Creates a function to call to clean up problems with the work-around for the\nWebKit RightMargin bug. The work-around is to add \"display: 'inline-block'\" to\nthe element before calling getComputedStyle and then to restore its original\ndisplay value. The problem with this is that it corrupts the selection of an\nINPUT or TEXTAREA element (as in the \"I-beam\" goes away but ths focus remains).\nTo cleanup after this, we need to capture the selection of any such element and\nthen restore it after we have restored the display style.

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Parameters

Ext.dom.AbstractElement
view source
( [contentSize] ) : Object
Returns the size of the element. ...

Returns the size of the element.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • contentSize : Boolean (optional)

    true to get the width/size minus borders and padding

    \n

Returns

Ext.dom.AbstractElement
view source
( property, [inline] ) : String/Object
Returns a named style property based on computed/currentStyle (primary) and\ninline-style if primary is not available. ...

Returns a named style property based on computed/currentStyle (primary) and\ninline-style if primary is not available.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • property : String/String[]

    The style property (or multiple property names\nin an array) whose value is returned.

    \n
  • inline : Boolean (optional)

    if true only inline styles will be returned.

    \n

    Defaults to: false

Returns

  • String/Object

    The current value of the style property for this element\n(or a hash of named style values if multiple property arguments are requested).

    \n
Ext.dom.AbstractElement
view source
( asNumber ) : String/Number
Returns the value of the \"value\" attribute ...

Returns the value of the \"value\" attribute

\n

Parameters

  • asNumber : Boolean

    true to parse the value as a number

    \n

Returns

Ext.dom.AbstractElement
view source
( ) : Object
Returns the dimensions of the element available to lay content out in. ...

Returns the dimensions of the element available to lay content out in.

\n\n

If the element (or any ancestor element) has CSS style display: none, the dimensions will be zero.

\n\n

Example:

\n\n
var vpSize = Ext.getBody().getViewSize();\n\n// all Windows created afterwards will have a default value of 90% height and 95% width\nExt.Window.override({\n    width: vpSize.width * 0.9,\n    height: vpSize.height * 0.95\n});\n// To handle window resizing you would have to hook onto onWindowResize.\n
\n\n

getViewSize utilizes clientHeight/clientWidth which excludes sizing of scrollbars.\nTo obtain the size including scrollbars, use getStyleSize

\n\n

Sizing of the document body is handled at the adapter level which handles special cases for IE and strict modes, etc.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Returns

Ext.dom.AbstractElement
view source
( )private
...
\n
Ext.dom.AbstractElement
view source
( [contentWidth] ) : Number
Returns the offset width of the element\n\nDefined in override Ext.dom.AbstractElement_style. ...

Returns the offset width of the element

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • contentWidth : Boolean (optional)

    true to get the width minus borders and padding

    \n

Returns

Ext.dom.AbstractElement
view source
( className ) : Boolean
Checks if the specified CSS class exists on this element's DOM node. ...

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

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • className : String

    The CSS class to check for

    \n

Returns

  • Boolean

    True if the class exists, else false

    \n
...
\n

Parameters

Ext.dom.AbstractElement
view source
( [animate] ) : Ext.Elementchainable
Hide this element - Uses display mode to determine whether to use \"display\" or \"visibility\". ...

Hide this element - Uses display mode to determine whether to use \"display\" or \"visibility\". See setVisible.

\n

Parameters

  • animate : Boolean/Object (optional)

    true for the default animation or a standard Element animation config object

    \n

Returns

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

Initialize configuration for this class. a typical example:

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

Parameters

Returns

Ext.dom.AbstractElement
view source
( el ) : Ext.dom.AbstractElementchainable
Inserts this element after the passed element in the DOM\n\nDefined in override Ext.dom.AbstractElement_insertion. ...

Inserts this element after the passed element in the DOM

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( el ) : Ext.dom.AbstractElementchainable
Inserts this element before the passed element in the DOM\n\nDefined in override Ext.dom.AbstractElement_insertion. ...

Inserts this element before the passed element in the DOM

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

  • el : String/HTMLElement/Ext.dom.AbstractElement

    The element before which this element will be inserted.\nThe id of the node, a DOM Node or an existing Element.

    \n

Returns

Ext.dom.AbstractElement
view source
( el ) : Ext.dom.AbstractElement
Inserts (or creates) an element (or DomHelper config) as the first child of this element\n\nDefined in override Ext.dom...

Inserts (or creates) an element (or DomHelper config) as the first child of this element

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( where, html, [returnEl] ) : HTMLElement/Ext.dom.AbstractElement
Inserts an html fragment into this element\n\nDefined in override Ext.dom.AbstractElement_insertion. ...

Inserts an html fragment into this element

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( el, [where], [returnDom] ) : Ext.dom.AbstractElement
Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element\n\nDefined in override Ext.d...

Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( selector ) : Boolean
Returns true if this element matches the passed simple selector (e.g. ...

Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)

\n

Parameters

  • selector : String

    The simple selector to test

    \n

Returns

  • Boolean

    True if this element matches the selector, else false

    \n
Ext.dom.AbstractElement
view source
( element )private
Defined in override Ext.dom.AbstractElement_traversal. ...

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

Ext.dom.AbstractElement
view source
( style, value ) : Boolean
Checks if the current value of a style is equal to a given value. ...

Checks if the current value of a style is equal to a given value.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • style : String

    property whose value is returned.

    \n
  • value : String

    to check against.

    \n

Returns

  • Boolean

    true for when the current value equals the given value.

    \n
Ext.dom.AbstractElement
view source
( prop ) : Boolean
Returns true if the value of the given property is visually transparent. ...

Returns true if the value of the given property is visually transparent. This\nmay be due to a 'transparent' style value or an rgba value with 0 in the alpha\ncomponent.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • prop : String

    The style property whose value is to be tested.

    \n

Returns

  • Boolean

    True if the style property is visually transparent.

    \n
Ext.dom.AbstractElement
view source
( [selector], [returnDom] ) : Ext.dom.Element/HTMLElement
Gets the last child, skipping text nodes\n\nDefined in override Ext.dom.AbstractElement_traversal. ...

Gets the last child, skipping text nodes

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String (optional)

    Find the previous sibling that matches the passed simple selector

    \n
  • returnDom : Boolean (optional)

    True to return a raw dom node instead of an Ext.dom.Element

    \n

    Defaults to: false

Returns

Ext.dom.AbstractElement
view source
( [msg], [msgCls] )
Puts a mask over this element to disable user interaction. ...

Puts a mask over this element to disable user interaction. Requires core.css.\nThis method can only be applied to elements which accept child nodes.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • msg : String (optional)

    A message to display in the mask

    \n
  • msgCls : String (optional)

    A css class to apply to the msg element

    \n
Ext.dom.AbstractElement
view source
( dir, start, selector, returnDom )private
Defined in override Ext.dom.AbstractElement_traversal. ...

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

Ext.dom.AbstractElement
view source
( [selector], [returnDom] ) : Ext.dom.Element/HTMLElement
Gets the next sibling, skipping text nodes\n\nDefined in override Ext.dom.AbstractElement_traversal. ...

Gets the next sibling, skipping text nodes

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String (optional)

    Find the next sibling that matches the passed simple selector

    \n
  • returnDom : Boolean (optional)

    True to return a raw dom node instead of an Ext.dom.Element

    \n

    Defaults to: false

Returns

( names, callback, scope )private
...
\n

Parameters

Ext.dom.AbstractElement
view source
( [selector], [returnDom] ) : Ext.dom.Element/HTMLElement
Gets the parent node for this element, optionally chaining up trying to match a selector\n\nDefined in override Ext.dom...

Gets the parent node for this element, optionally chaining up trying to match a selector

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String (optional)

    Find a parent node that matches the passed simple selector

    \n
  • returnDom : Boolean (optional)

    True to return a raw dom node instead of an Ext.dom.Element

    \n

    Defaults to: false

Returns

Ext.dom.AbstractElement
view source
( [selector], [returnDom] ) : Ext.dom.Element/HTMLElement
Gets the previous sibling, skipping text nodes\n\nDefined in override Ext.dom.AbstractElement_traversal. ...

Gets the previous sibling, skipping text nodes

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String (optional)

    Find the previous sibling that matches the passed simple selector

    \n
  • returnDom : Boolean (optional)

    True to return a raw dom node instead of an Ext.dom.Element

    \n

    Defaults to: false

Returns

Ext.dom.AbstractElement
view source
( selector ) : HTMLElement[]
Selects child nodes based on the passed CSS selector (the selector should not contain an id). ...

Selects child nodes based on the passed CSS selector (the selector should not contain an id).

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String

    The CSS selector

    \n

Returns

  • HTMLElement[]

    An array of the matched nodes

    \n
Ext.dom.AbstractElement
view source
( className ) : Ext.dom.Element
Adds one or more CSS classes to this element and removes the same class(es) from all siblings. ...

Adds one or more CSS classes to this element and removes the same class(es) from all siblings.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • className : String/String[]

    The CSS class to add, or an array of classes

    \n

Returns

Ext.dom.AbstractElement
view source
( )
Removes this element's dom reference. ...

Removes this element's dom reference. Note that event and cache removal is handled at Ext.removeNode

\n
Ext.dom.AbstractElement
view source
( className ) : Ext.dom.Element
Removes one or more CSS classes from the element. ...

Removes one or more CSS classes from the element.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • className : String/String[]

    The CSS classes to remove separated by space, or an array of classes

    \n

Returns

Ext.dom.AbstractElement
view source
( ) : Ext.dom.Elementchainable
Forces the browser to repaint this element\n\nDefined in override Ext.dom.AbstractElement_style. ...

Forces the browser to repaint this element

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Returns

Ext.dom.AbstractElement
view source
( el ) : Ext.dom.AbstractElementchainable
Replaces the passed element with this element\n\nDefined in override Ext.dom.AbstractElement_insertion. ...

Replaces the passed element with this element

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( oldClassName, newClassName ) : Ext.dom.Element
Replaces a CSS class on the element with another. ...

Replaces a CSS class on the element with another. If the old name does not exist, the new name will simply be added.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • oldClassName : String

    The CSS class to replace

    \n
  • newClassName : String

    The replacement CSS class

    \n

Returns

Ext.dom.AbstractElement
view source
( el ) : Ext.dom.AbstractElement
Replaces this element with the passed element\n\nDefined in override Ext.dom.AbstractElement_insertion. ...

Replaces this element with the passed element

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( selector, [unique] ) : Ext.CompositeElement
Creates a Ext.CompositeElement for child nodes based on the passed CSS selector (the selector should not contain an id). ...

Creates a Ext.CompositeElement for child nodes based on the passed CSS selector (the selector should not contain an id).

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String

    The CSS selector

    \n
  • unique : Boolean (optional)

    True to create a unique Ext.Element for each element. Defaults to a shared flyweight object.

    \n

Returns

Ext.dom.AbstractElement
view source
( form ) : String
Serializes a DOM form into a url encoded string\n\nDefined in override Ext.dom.AbstractElement_static. ...

Serializes a DOM form into a url encoded string

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( o, [useSet] ) : Ext.dom.Elementchainable
Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function) ...

Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)

\n

Parameters

  • o : Object

    The object with the attributes

    \n
  • useSet : Boolean (optional)

    false to override the default setAttribute to use expandos.

    \n

    Defaults to: true

Returns

( config, applyIfNotSet ) : Ext.Basechainableprivate
...
\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( html ) : Ext.Elementchainable
Set the innerHTML of this element ...

Set the innerHTML of this element

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( height ) : Ext.dom.Element
Set the height of this Element. ...

Set the height of this Element.

\n\n
// change the height to 200px and animate with default configuration\nExt.fly('elementId').setHeight(200, true);\n\n// change the height to 150px and animate with a custom configuration\nExt.fly('elId').setHeight(150, {\n    duration : 500, // animation will have a duration of .5 seconds\n    // will change the content to \"finished\"\n    callback: function(){ this.update(\"finished\"); }\n});\n
\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • height : Number/String

    The new height. This may be one of:

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

Returns

Ext.dom.AbstractElement
view source
( width, height ) : Ext.dom.Element
Set the size of this Element. ...

Set the size of this Element. If animation is true, both width and height will be animated concurrently.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • width : Number/String

    The new width. This may be one of:

    \n\n
      \n
    • A Number specifying the new width in this Element's defaultUnits (by default, pixels).
    • \n
    • A String used to set the CSS width style. Animation may not be used.
    • \n
    • A size object in the format {width: widthValue, height: heightValue}.
    • \n
    \n\n
  • height : Number/String

    The new height. This may be one of:

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

Returns

Ext.dom.AbstractElement
view source
( property, [value] ) : Ext.dom.Element
Wrapper for setting style properties, also takes single object parameter of multiple styles. ...

Wrapper for setting style properties, also takes single object parameter of multiple styles.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • property : String/Object

    The style property to be set, or an object of multiple styles.

    \n
  • value : String (optional)

    The value to apply to the given property, or null if an object was passed.

    \n

Returns

Ext.dom.AbstractElement
view source
( mode ) : Ext.dom.AbstractElementchainable
Use this to change the visibility mode between VISIBILITY, DISPLAY, OFFSETS or ASCLASS. ...

Use this to change the visibility mode between VISIBILITY, DISPLAY, OFFSETS or ASCLASS.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( visible, [animate] ) : Ext.Element
Sets the visibility of the element (see details). ...

Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use\nthe display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.

\n

Parameters

  • visible : Boolean

    Whether the element is visible

    \n
  • animate : Boolean/Object (optional)

    True for the default animation, or a standard Element animation config object

    \n

Returns

Ext.dom.AbstractElement
view source
( width ) : Ext.dom.Element
Set the width of this Element. ...

Set the width of this Element.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • width : Number/String

    The new width. This may be one of:

    \n\n
      \n
    • A Number specifying the new width in this Element's defaultUnits (by default, pixels).
    • \n
    • A String used to set the CSS width style. Animation may not be used.
    • \n
    \n\n

Returns

Ext.dom.AbstractElement
view source
( [animate] ) : Ext.Elementchainable
Show this element - Uses display mode to determine whether to use \"display\" or \"visibility\". ...

Show this element - Uses display mode to determine whether to use \"display\" or \"visibility\". See setVisible.

\n

Parameters

  • animate : Boolean/Object (optional)

    true for the default animation or a standard Element animation config object

    \n

Returns

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

Get the reference to the class from which this object was instantiated. Note that unlike self,\nthis.statics() is scope-independent and it always returns the class from which it was called, regardless of what\nthis points to during run-time

\n\n
Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n
\n

Returns

Ext.dom.AbstractElement
view source
( className ) : Ext.dom.Element
Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it). ...

Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n

Parameters

  • className : String

    The CSS class to toggle

    \n

Returns

Ext.dom.AbstractElement
view source
( )
Removes a previously applied mask. ...

Removes a previously applied mask.

\n\n

Defined in override Ext.dom.AbstractElement_style.

\n
Ext.dom.AbstractElement
view source
( selector, [limit], [returnDom] ) : Ext.Element
Walks up the DOM looking for a parent node that matches the passed simple selector (e.g. ...

Walks up the DOM looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).\nThis is a shortcut for findParentNode() that always returns an Ext.dom.Element.

\n\n

Defined in override Ext.dom.AbstractElement_traversal.

\n

Parameters

  • selector : String

    The simple selector to test

    \n
  • limit : Number/String/HTMLElement/Ext.Element (optional)

    The max depth to search as a number or an element which causes the upward traversal to stop\nand is not considered for inclusion as the result. (defaults to 50 || document.documentElement)

    \n
  • returnDom : Boolean (optional)

    True to return the DOM node instead of Ext.dom.Element

    \n

    Defaults to: false

Returns

  • Ext.Element

    The matching DOM node (or null if no match was found)

    \n
Ext.dom.AbstractElement
view source
( html ) : Ext.dom.Elementchainable
Update the innerHTML of this element ...

Update the innerHTML of this element

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( [config], [returnDom], [selector] ) : HTMLElement/Ext.dom.AbstractElement
Creates and wraps this element with another element\n\nDefined in override Ext.dom.AbstractElement_insertion. ...

Creates and wraps this element with another element

\n\n

Defined in override Ext.dom.AbstractElement_insertion.

\n

Parameters

  • config : Object (optional)

    DomHelper element config object for the wrapper element or null for an empty div

    \n
  • returnDom : Boolean (optional)

    True to return the raw DOM element instead of Ext.dom.AbstractElement

    \n

    Defaults to: false

  • selector : String (optional)

    A DomQuery selector to select a descendant node within the created element to use as the wrapping element.

    \n

Returns

Defined By

Static Methods

( config )privatestatic
...
\n

Parameters

( members )chainableprivatestatic
...
\n

Parameters

( name, member )chainableprivatestatic
...
\n

Parameters

( members )chainablestatic
Add methods / properties to the prototype of this class. ...

Add methods / properties to the prototype of this class.

\n\n
Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.addMembers({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n
\n

Parameters

Ext.dom.AbstractElement
view source
( )privatestatic
...
\n
( members ) : Ext.Basechainablestatic
Add / override static properties of this class. ...

Add / override static properties of this class.

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

Parameters

Returns

Ext.dom.AbstractElement
view source
( el, id )privatestatic
...
\n

Parameters

Ext.dom.AbstractElement
view source
( size, units )privatestatic
Test if size has a unit, otherwise appends the passed unit string, or the default for this Element. ...

Test if size has a unit, otherwise appends the passed unit string, or the default for this Element.

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Parameters

  • size : Object

    {Object} The size to set

    \n
  • units : Object

    {String} The units to append to a numeric size value

    \n
( xtype )chainableprivatestatic
...
\n

Parameters

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

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

\n\n
Ext.define('Bank', {\n    money: '$$$',\n    printMoney: function() {\n        alert('$$$$$$$');\n    }\n});\n\nExt.define('Thief', {\n    ...\n});\n\nThief.borrow(Bank, ['money', 'printMoney']);\n\nvar steve = new Thief();\n\nalert(steve.money); // alerts '$$$'\nsteve.printMoney(); // alerts '$$$$$$$'\n
\n

Parameters

  • fromClass : Ext.Base

    The class to borrow members from

    \n
  • members : Array/String

    The names of the members to borrow

    \n

Returns

Ext.dom.AbstractElement
view source
( m, a )privatestatic
private\n\nDefined in override Ext.dom.AbstractElement_static. ...

private

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Parameters

Create a new instance of this Class. ...

Create a new instance of this Class.

\n\n
Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n
\n\n

All parameters are passed to the constructor of the class.

\n

Returns

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

Create aliases for existing prototype methods. Example:

\n\n
Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -> test.method1()\n
\n

Parameters

( config )privatestatic
...
\n

Parameters

Ext.dom.AbstractElement
view source
( dom, [named] ) : Ext.dom.Element.Flystatic
Gets the singleton flyweight element, with the passed node as the active element. ...

Gets the singleton flyweight element, with the passed node as the active element.

\n\n

Because it is a singleton, this Flyweight does not have an ID, and must be used and discarded in a single line.\nYou may not keep and use the reference to this singleton over multiple lines because methods that you call\nmay themselves make use of Ext.fly and may change the DOM element to which the instance refers.

\n\n

Ext.fly is alias for fly.

\n\n

Use this to make one-time references to DOM elements which are not going to be accessed again either by\napplication code, or by Ext's classes. If accessing an element which will be processed regularly, then Ext.get will be more appropriate to take advantage of the caching provided by the Ext.dom.Element\nclass.

\n

Parameters

  • dom : String/HTMLElement

    The dom node or id

    \n
  • named : String (optional)

    Allows for creation of named reusable flyweights to prevent conflicts (e.g.\ninternally Ext uses \"_global\")

    \n

Returns

Ext.dom.AbstractElement
view source
( x, y ) : Stringstatic
Returns the top Element that is located at the passed coordinates\n\nDefined in override Ext.dom.AbstractElement_static. ...

Returns the top Element that is located at the passed coordinates

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( el ) : Ext.dom.Elementstatic
Retrieves Ext.dom.Element objects. ...

Retrieves Ext.dom.Element objects. Ext.get is alias for Ext.dom.Element.get.

\n\n

This method does not retrieve Components. This method retrieves Ext.dom.Element\nobjects which encapsulate DOM elements. To retrieve a Component by its ID, use Ext.ComponentManager.get.

\n\n

When passing an id, it should not include the # character that is used for a css selector.

\n\n
// For an element with id 'foo'\nExt.get('foo'); // Correct\nExt.get('#foo'); // Incorrect\n
\n\n

Uses simple caching to consistently return the same object. Automatically fixes if an object was recreated with\nthe same id via AJAX or DOM.

\n

Parameters

  • el : String/HTMLElement/Ext.Element

    The id of the node, a DOM Node or an existing Element.

    \n

Returns

  • Ext.dom.Element

    The Element object (or null if no matching element was found)

    \n
Ext.dom.AbstractElement
view source
( ) : Numberstatic
Retrieves the document height\n\nDefined in override Ext.dom.AbstractElement_static. ...

Retrieves the document height

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Returns

Ext.dom.AbstractElement
view source
( ) : Numberstatic
Retrieves the document width\n\nDefined in override Ext.dom.AbstractElement_static. ...

Retrieves the document width

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Returns

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

Get the current class' name in string format.

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

Returns

Ext.dom.AbstractElement
view source
( ) : Stringstatic
Retrieves the current orientation of the window. ...

Retrieves the current orientation of the window. This is calculated by\ndeterming if the height is greater than the width.

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Returns

  • String

    Orientation of window: 'portrait' or 'landscape'

    \n
Ext.dom.AbstractElement
view source
( ) : Objectstatic
Retrieves the viewport size of the window. ...

Retrieves the viewport size of the window.

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Returns

  • Object

    object containing width and height properties

    \n
Ext.dom.AbstractElement
view source
( ) : Numberstatic
Retrieves the viewport height of the window. ...

Retrieves the viewport height of the window.

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Returns

Ext.dom.AbstractElement
view source
( ) : Numberstatic
Retrieves the viewport width of the window. ...

Retrieves the viewport width of the window.

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Returns

( )deprecatedstatic
Adds members to class. ...

Adds members to class.

\n
\n

This method has been deprecated since 4.1

\n

Use addMembers instead.

\n\n
\n
Ext.dom.AbstractElement
view source
( p, c )privatestatic
Defined in override Ext.dom.AbstractElement_static. ...

Defined in override Ext.dom.AbstractElement_static.

\n

Parameters

Ext.dom.AbstractElement
view source
( clsList1, clsList2 ) : Arraystatic
Returns an array of unique class names based upon the input strings, or string arrays. ...

Returns an array of unique class names based upon the input strings, or string arrays.

\n\n\n

The number of parameters is unlimited.

\n\n\n

Example

\n\n\n
// Add x-invalid and x-mandatory classes, do not duplicate\nmyElement.dom.className = Ext.core.Element.mergeClsList(this.initialClasses, 'x-invalid x-mandatory');\n
\n\n

Parameters

  • clsList1 : Mixed

    A string of class names, or an array of class names.

    \n
  • clsList2 : Mixed

    A string of class names, or an array of class names.

    \n

Returns

  • Array

    An array of strings representing remaining unique, merged class names. If class names were added to the first list, the changed property will be true.

    \n
( name, mixinClass )privatestatic
Used internally by the mixins pre-processor ...

Used internally by the mixins pre-processor

\n

Parameters

Ext.dom.AbstractElement
view source
( prop ) : Stringstatic
Normalizes CSS property keys from dash delimited to camel case JavaScript Syntax. ...

Normalizes CSS property keys from dash delimited to camel case JavaScript Syntax.\nFor example:

\n\n
    \n
  • border-width -> borderWidth
  • \n
  • padding-top -> paddingTop
  • \n
\n\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Parameters

  • prop : String

    The property to normalize

    \n

Returns

( fn, scope )chainableprivatestatic
...
\n

Parameters

( members ) : Ext.Basechainabledeprecatedstatic
Override members of this class. ...

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

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

As of 4.1, direct use of this method is deprecated. Use Ext.define\ninstead:

\n\n
Ext.define('My.CatOverride', {\n    override: 'My.Cat',\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        this.callParent(arguments);\n\n        alert(\"Meeeeoooowwww\");\n    }\n});\n
\n\n

The above accomplishes the same result but can be managed by the Ext.Loader\nwhich can properly order the override and its target class and the build process\ncan determine whether the override is needed based on the required state of the\ntarget class (My.Cat).

\n
\n

This method has been deprecated since 4.1.0

\n

Use Ext.define instead

\n\n
\n

Parameters

  • members : Object

    The properties to add to this class. This should be\nspecified as an object literal containing one or more properties.

    \n

Returns

Ext.dom.AbstractElement
view source
( box ) : Objectstatic
Parses a number or string representing margin sizes into an object. ...

Parses a number or string representing margin sizes into an object. Supports CSS-style margin declarations\n(e.g. 10, \"10\", \"10 10\", \"10 10 10\" and \"10 10 10 10\" are all valid options and would return the same result)

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Parameters

Returns

  • Object

    An object with margin sizes for top, right, bottom and left

    \n
Ext.dom.AbstractElement
view source
( styles ) : Objectstatic
Converts a CSS string into an object with a property for each style. ...

Converts a CSS string into an object with a property for each style.

\n\n

The sample code below would return an object with 2 properties, one\nfor background-color and one for color.

\n\n
var css = 'background-color: red;color: blue; ';\nconsole.log(Ext.dom.Element.parseStyles(css));\n
\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Parameters

Returns

Ext.dom.AbstractElement
view source
( existingClsList, removeClsList ) : Arraystatic
Returns an array of unique class names deom the first parameter with all class names\nfrom the second parameter removed. ...

Returns an array of unique class names deom the first parameter with all class names\nfrom the second parameter removed.

\n\n\n

Example

\n\n\n
// Remove x-invalid and x-mandatory classes if present.\nmyElement.dom.className = Ext.core.Element.removeCls(this.initialClasses, 'x-invalid x-mandatory');\n
\n\n

Parameters

  • existingClsList : Mixed

    A string of class names, or an array of class names.

    \n
  • removeClsList : Mixed

    A string of class names, or an array of class names to remove from existingClsList.

    \n

Returns

  • Array

    An array of strings representing remaining class names. If class names were removed, the changed property will be true.

    \n
Ext.dom.AbstractElement
view source
( box, units ) : Stringstatic
Parses a number or string representing margin sizes into an object. ...

Parses a number or string representing margin sizes into an object. Supports CSS-style margin declarations\n(e.g. 10, \"10\", \"10 10\", \"10 10 10\" and \"10 10 10 10\" are all valid options and would return the same result)

\n\n

Defined in override Ext.dom.AbstractElement_static.

\n

Parameters

  • box : Number/String/Object

    The encoded margins, or an object with top, right,\nbottom, and left properties

    \n
  • units : String

    The type of units to add

    \n

Returns

  • String

    An string with unitized (px if units is not specified) metrics for top, right, bottom and left

    \n
","superclasses":["Ext.Base"],"meta":{"private":true},"code_type":"ext_define","requires":["Ext.EventManager","Ext.dom.AbstractElement_insertion","Ext.dom.AbstractElement_static","Ext.dom.AbstractElement_style","Ext.dom.AbstractElement_traversal"],"html_meta":{"private":null},"statics":{"property":[{"tagname":"property","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"$onExtended","id":"static-property-S-onExtended"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"ASCLASS","id":"static-property-ASCLASS"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"DISPLAY","id":"static-property-DISPLAY"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"OFFSETS","id":"static-property-OFFSETS"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"VISIBILITY","id":"static-property-VISIBILITY"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"borders","id":"property-borders"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"camelRe","id":"property-camelRe"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"cssRe","id":"property-cssRe"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"margins","id":"property-margins"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"msRe","id":"property-msRe"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"opacityRe","id":"property-opacityRe"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"paddings","id":"property-paddings"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"propertyCache","id":"property-propertyCache"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"trimRe","id":"property-trimRe"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"unitRe","id":"property-unitRe"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"whitespaceRe","id":"property-whitespaceRe"}],"cfg":[],"css_var":[],"method":[{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"addConfig","id":"static-method-addConfig"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addInheritableStatics","id":"static-method-addInheritableStatics"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addMember","id":"static-method-addMember"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true},"name":"addMembers","id":"static-method-addMembers"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"addMethods","id":"method-addMethods"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true},"name":"addStatics","id":"static-method-addStatics"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"addToCache","id":"method-addToCache"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"addUnits","id":"static-method-addUnits"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addXtype","id":"static-method-addXtype"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"borrow","id":"static-method-borrow"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"camelReplaceFn","id":"method-camelReplaceFn"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"create","id":"static-method-create"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"createAlias","id":"static-method-createAlias"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"extend","id":"static-method-extend"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"fly","id":"static-method-fly"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"fromPoint","id":"static-method-fromPoint"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"get","id":"static-method-get"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"getDocumentHeight","id":"static-method-getDocumentHeight"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"getDocumentWidth","id":"static-method-getDocumentWidth"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"getName","id":"static-method-getName"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"getOrientation","id":"static-method-getOrientation"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"getViewSize","id":"static-method-getViewSize"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"getViewportHeight","id":"static-method-getViewportHeight"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"getViewportWidth","id":"static-method-getViewportWidth"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"deprecated":{"text":"Use {@link #addMembers} instead.","version":"4.1"}},"name":"implement","id":"static-method-implement"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true,"private":true},"name":"isAncestor","id":"static-method-isAncestor"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"mergeClsList","id":"static-method-mergeClsList"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"mixin","id":"static-method-mixin"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"normalize","id":"static-method-normalize"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"onExtended","id":"static-method-onExtended"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"markdown":true,"deprecated":{"text":"Use {@link Ext#define Ext.define} instead","version":"4.1.0"}},"name":"override","id":"static-method-override"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"parseBox","id":"static-method-parseBox"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"parseStyles","id":"static-method-parseStyles"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"removeCls","id":"static-method-removeCls"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"triggerExtended","id":"static-method-triggerExtended"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"static":true},"name":"unitizeBox","id":"static-method-unitizeBox"}],"event":[],"css_mixin":[]},"files":[{"href":"AbstractElement.html#Ext-dom-AbstractElement","filename":"AbstractElement.js"},{"href":"AbstractElement_static.html#Ext-dom-AbstractElement_static","filename":"AbstractElement_static.js"},{"href":"AbstractElement_traversal.html#Ext-dom-AbstractElement_traversal","filename":"AbstractElement_traversal.js"},{"href":"AbstractElement_insertion.html#Ext-dom-AbstractElement_insertion","filename":"AbstractElement_insertion.js"},{"href":"AbstractElement_style.html#Ext-dom-AbstractElement_style","filename":"AbstractElement_style.js"}],"linenr":4,"members":{"property":[{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"$className","id":"property-S-className"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"configMap","id":"property-configMap"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{},"name":"defaultUnit","id":"property-defaultUnit"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{},"name":"dom","id":"property-dom"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{},"name":"id","id":"property-id"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"initConfigList","id":"property-initConfigList"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"initConfigMap","id":"property-initConfigMap"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"isInstance","id":"property-isInstance"},{"tagname":"property","owner":"Ext.Base","meta":{"protected":true},"name":"self","id":"property-self"},{"tagname":"property","owner":"Ext.dom.AbstractElement","meta":{"private":true},"name":"styleHooks","id":"property-styleHooks"}],"cfg":[],"css_var":[],"method":[{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"addCls","id":"method-addCls"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"appendChild","id":"method-appendChild"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"appendTo","id":"method-appendTo"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"applyStyles","id":"method-applyStyles"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true,"deprecated":{"text":"as of 4.1. Use {@link #callParent} instead."}},"name":"callOverridden","id":"method-callOverridden"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"callParent","id":"method-callParent"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"callSuper","id":"method-callSuper"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"child","id":"method-child"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"configClass","id":"method-configClass"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"contains","id":"method-contains"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"createChild","id":"method-createChild"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"destroy","id":"method-destroy"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"down","id":"method-down"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"findParent","id":"method-findParent"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"findParentNode","id":"method-findParentNode"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"first","id":"method-first"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getActiveElement","id":"method-getActiveElement"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getAttribute","id":"method-getAttribute"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getBorderWidth","id":"method-getBorderWidth"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getById","id":"method-getById"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"private":true},"name":"getCache","id":"method-getCache"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"getConfig","id":"method-getConfig"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getHTML","id":"method-getHTML"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getHeight","id":"method-getHeight"},{"tagname":"method","owner":"Ext.Base","meta":{},"name":"getInitialConfig","id":"method-getInitialConfig"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getMargin","id":"method-getMargin"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getPadding","id":"method-getPadding"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"private":true},"name":"getRightMarginFixCleaner","id":"method-getRightMarginFixCleaner"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getSize","id":"method-getSize"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getStyle","id":"method-getStyle"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getValue","id":"method-getValue"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getViewSize","id":"method-getViewSize"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"private":true},"name":"getVisibilityMode","id":"method-getVisibilityMode"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"getWidth","id":"method-getWidth"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"hasCls","id":"method-hasCls"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"hasConfig","id":"method-hasConfig"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"hide","id":"method-hide"},{"tagname":"method","owner":"Ext.Base","meta":{"chainable":true,"protected":true},"name":"initConfig","id":"method-initConfig"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"insertAfter","id":"method-insertAfter"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"insertBefore","id":"method-insertBefore"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"insertFirst","id":"method-insertFirst"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"insertHtml","id":"method-insertHtml"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"insertSibling","id":"method-insertSibling"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"is","id":"method-is"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"private":true},"name":"isAncestor","id":"method-isAncestor"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"isStyle","id":"method-isStyle"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"isTransparent","id":"method-isTransparent"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"last","id":"method-last"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"mask","id":"method-mask"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"private":true},"name":"matchNode","id":"method-matchNode"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"next","id":"method-next"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"onConfigUpdate","id":"method-onConfigUpdate"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"parent","id":"method-parent"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"prev","id":"method-prev"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"query","id":"method-query"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"radioCls","id":"method-radioCls"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"remove","id":"method-remove"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"removeCls","id":"method-removeCls"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"repaint","id":"method-repaint"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"replace","id":"method-replace"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"replaceCls","id":"method-replaceCls"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"replaceWith","id":"method-replaceWith"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"select","id":"method-select"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"serializeForm","id":"method-serializeForm"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"set","id":"method-set"},{"tagname":"method","owner":"Ext.Base","meta":{"chainable":true,"private":true},"name":"setConfig","id":"method-setConfig"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"setHTML","id":"method-setHTML"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"setHeight","id":"method-setHeight"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"setSize","id":"method-setSize"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"setStyle","id":"method-setStyle"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"setVisibilityMode","id":"method-setVisibilityMode"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"setVisible","id":"method-setVisible"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"setWidth","id":"method-setWidth"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"show","id":"method-show"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"statics","id":"method-statics"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"toggleCls","id":"method-toggleCls"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"unmask","id":"method-unmask"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"up","id":"method-up"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{"chainable":true},"name":"update","id":"method-update"},{"tagname":"method","owner":"Ext.dom.AbstractElement","meta":{},"name":"wrap","id":"method-wrap"}],"event":[],"css_mixin":[]},"inheritable":null,"private":true,"component":false,"name":"Ext.dom.AbstractElement","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.dom.AbstractElement","mixins":[],"mixedInto":[]});