X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..refs/heads/master:/docs/api/Ext.Layer.html diff --git a/docs/api/Ext.Layer.html b/docs/api/Ext.Layer.html deleted file mode 100644 index d7351995..00000000 --- a/docs/api/Ext.Layer.html +++ /dev/null @@ -1,1992 +0,0 @@ -
Hierarchy
Ext.core.ElementExt.Layer
An extended Ext.core.Element object that supports a shadow and shim, constrain to viewport and -automatic maintaining of shadow/shim positions.
-False to disable constrain to viewport (defaults to true)
-False to disable constrain to viewport (defaults to true)
-DomHelper object config to create element with (defaults to {tag: 'div', cls: 'x-layer'}).
-DomHelper object config to create element with (defaults to {tag: 'div', cls: 'x-layer'}).
-A String which specifies how this Layer will be hidden. -Values may be
'display'
: The Component will be hidden using the display: none
style.'visibility'
: The Component will be hidden using the visibility: hidden
style.'offsets'
: The Component will be hidden by absolutely positioning it out of the visible area of the document. This
-is useful when a hidden Component must maintain measurable dimensions. Hiding using display
results
-in a Component having zero dimensions.True to automatically create an Ext.Shadow, or a string indicating the -shadow's display Ext.Shadow.mode. False to disable the shadow. (defaults to false)
-Number of pixels to offset the shadow (defaults to 4)
-Number of pixels to offset the shadow (defaults to 4)
-False to disable the iframe shim in browsers which need one (defaults to true)
-False to disable the iframe shim in browsers which need one (defaults to true)
-Defaults to use css offsets to hide the Layer. Specify true -to use css style 'display:none;' to hide the Layer.
-Defaults to use css offsets to hide the Layer. Specify true -to use css style 'display:none;' to hide the Layer.
-Visibility mode constant for use with setVisibilityMode. Use display to hide element
-Visibility mode constant for use with setVisibilityMode. Use display to hide element
-Visibility mode constant for use with setVisibilityMode. Use offsets (x and y positioning offscreen) -to hide element.
-Visibility mode constant for use with setVisibilityMode. Use offsets (x and y positioning offscreen) -to hide element.
-Visibility mode constant for use with setVisibilityMode. Use visibility to hide element
-Visibility mode constant for use with setVisibilityMode. Use visibility to hide element
-true to automatically adjust width and height settings for box-model issues (default to true)
-true to automatically adjust width and height settings for box-model issues (default to true)
-The default unit to append to CSS values where a unit isn't provided (defaults to px).
-The default unit to append to CSS values where a unit isn't provided (defaults to px).
-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.
-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.
-The element's default display mode (defaults to "")
-The element's default display mode (defaults to "")
-
An object with config options.
-(optional) Uses an existing DOM element. If the element is not found it creates it.
-Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
-Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
-The CSS classes to add separated by space, or an array of classes
-this
-Sets up event handlers to add and remove a css class when the mouse is down and then up on this element (a click effect)
-this
-Sets up event handlers to add and remove a css class when this element has the focus
-Sets up event handlers to add and remove a css class when this element has the focus
-this
-Sets up event handlers to add and remove a css class when the mouse is over this element
-Sets up event handlers to add and remove a css class when the mouse is over this element
-this
-Convenience method for constructing a KeyMap
-Convenience method for constructing a KeyMap
-Either a string with the keys to listen for, the numeric key code, array of key codes or an object with the following options:
-{key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
The function to call
-(optional) The scope (this
reference) in which the specified function is executed. Defaults to this Element.
The KeyMap created
-Creates a KeyMap for this element
-Creates a KeyMap for this element
-The KeyMap config. See Ext.util.KeyMap for more details
-The KeyMap created
-Appends an event handler to this element. The shorthand version on is equivalent.
-Appends an event handler to this element. The shorthand version on is equivalent.
-The name of event to handle.
-The handler function the event invokes. This function is passed -the following parameters:
(optional) The scope (this
reference) in which the handler function is executed.
-If omitted, defaults to this Element..
(optional) An object containing handler configuration properties. -This may contain any of the following properties:
this
reference) in which the handler function is executed.
-If omitted, defaults to this Element.
-Combining Options
-In the following examples, the shorthand form on is used rather than the more verbose
-addListener. The two are equivalent. Using the options argument, it is possible to combine different
-types of listeners:
-
-A delayed, one-time listener that auto stops the event and adds a custom argument (forumId) to the
-options object. The options object is available as the third parameter in the handler function.
el.on('click', this.onClick, this, {
- single: true,
- delay: 100,
- stopEvent : true,
- forumId: 4
-});
-
-
-
-Attaching multiple handlers in 1 call
-The method also allows for a single argument to be passed which is a config object containing properties
-which specify multiple handlers.
-Code: -
el.on({
- 'click' : {
- fn: this.onClick,
- scope: this,
- delay: 100
- },
- 'mouseover' : {
- fn: this.onMouseOver,
- scope: this
- },
- 'mouseout' : {
- fn: this.onMouseOut,
- scope: this
- }
-});
-
-Or a shorthand syntax:
-Code:
-
-el.on({
- 'click' : this.onClick,
- 'mouseover' : this.onMouseOver,
- 'mouseout' : this.onMouseOut,
- scope: this
-});
-
-
-
-delegate
- - -This is a configuration option that you can pass along when registering a handler for -an event to assist with event delegation. Event delegation is a technique that is used to -reduce memory consumption and prevent exposure to memory-leaks. By registering an event -for a container element as opposed to each element within a container. By setting this -configuration option to a simple selector, the target element will be filtered to look for -a descendant of the target. -For example: -
// using this markup:
-<div id='elId'>
- <p id='p1'>paragraph one</p>
- <p id='p2' class='clickable'>paragraph two</p>
- <p id='p3'>paragraph three</p>
-</div>
-// utilize event delegation to registering just one handler on the container element:
-el = Ext.get('elId');
-el.on(
- 'click',
- function(e,t) {
- // handle click
- console.info(t.id); // 'p2'
- },
- this,
- {
- // filter the target element to be a descendant with the class 'clickable'
- delegate: '.clickable'
- }
-);
-
-
-this
-Aligns this element with another element relative to the specified anchor points. If the other element is the -document it aligns it to the viewport. -The position parameter is optional, and can be specified in any one of the following formats:
- -In addition to the anchor points, the position parameter also supports the "?" character. If "?" is passed at the end of -the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to -the viewport if necessary. Note that the element being aligned might be swapped to align to a different position than -that specified in order to enforce the viewport constraints. -Following are all of the supported anchor positions:
- -Value Description ------ ----------------------------- -tl The top left corner (default) -t The center of the top edge -tr The top right corner -l The center of the left edge -c In the center of the element -r The center of the right edge -bl The bottom left corner -b The center of the bottom edge -br The bottom right corner -- - -
Example Usage:
- -// align el to other-el using the default positioning ("tl-bl", non-constrained)
-el.alignTo("other-el");
-
-// align the top left corner of el with the top right corner of other-el (constrained to viewport)
-el.alignTo("other-el", "tr?");
-
-// align the bottom right corner of el with the center left edge of other-el
-el.alignTo("other-el", "br-l?");
-
-// align the center of el with the bottom left corner of other-el and
-// adjust the x position by -6 pixels (and the y position by 0)
-el.alignTo("other-el", "c-bl", [-6, 0]);
-
-
-The element to align to.
-(optional, defaults to "tl-bl?") The position to align to.
-(optional) Offset the positioning by [x, y]
-(optional) true for the default animation or a standard Element animation config object
-this
-Anchors an element to another element and realigns it when the window is resized.
-Anchors an element to another element and realigns it when the window is resized.
-The element to align to.
-The position to align to.
-(optional) Offset the positioning by [x, y]
-(optional) True for the default animation or a standard Element animation config object
-(optional) True to monitor body scroll and reposition. If this parameter -is a number, it is used as the buffer delay (defaults to 50ms).
-The function to call after the animation finishes
-this
-Appends the passed element(s) to this element
-Appends the passed element(s) to this element
-this
-Appends this element to the passed element
-Appends this element to the passed element
-The new parent element
-this
-More flexible version of setStyle for setting style properties.
-More flexible version of setStyle for setting style properties.
-A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or -a function which returns such a specification.
-this
-Tries to blur the element. Any exceptions are caught and ignored.
-Tries to blur the element. Any exceptions are caught and ignored.
-this
-Wraps the specified element with a special 9 element markup/CSS block that renders by default as -a gray container with a gradient background, rounded corners and a 4-way shadow.
- - -This special markup is used throughout Ext when box wrapping elements (Ext.button.Button, -Ext.panel.Panel when frame=true, Ext.window.Window). The markup -is of this form:
- - - Ext.core.Element.boxMarkup =
- '<div class="{0}-tl"><div class="{0}-tr"><div class="{0}-tc"></div></div></div>
- <div class="{0}-ml"><div class="{0}-mr"><div class="{0}-mc"></div></div></div>
- <div class="{0}-bl"><div class="{0}-br"><div class="{0}-bc"></div></div></div>';
-
-
-
-Example usage:
- - - // Basic box wrap
- Ext.get("foo").boxWrap();
-
- // You can also add a custom class and use CSS inheritance rules to customize the box look.
- // 'x-box-blue' is a built-in alternative -- look at the related CSS definitions as an example
- // for how to create a custom box wrap style.
- Ext.get("foo").boxWrap().addCls("x-box-blue");
-
-
-(optional) A base CSS class to apply to the containing wrapper element -(defaults to 'x-box'). Note that there are a number of CSS rules that are dependent on -this name to make the overall effect work, so if you supply an alternate base class, make sure you -also supply all of the necessary rules.
-The outermost wrapping element of the created box structure.
-Centers the Element in either the viewport, or another Element.
-Centers the Element in either the viewport, or another Element.
-(optional) The element in which to center the 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).
-The CSS selector
-(optional) True to return the DOM node instead of Ext.core.Element (defaults to false)
-The child Ext.core.Element (or DOM node if returnDom = true)
-Removes Empty, or whitespace filled text nodes. Combines adjacent text nodes.
-Removes Empty, or whitespace filled text nodes. Combines adjacent text nodes.
-(optional) By default the element -keeps track if it has been cleaned already so -you can call this over and over. However, if you update the element and -need to force a reclean, you can pass true.
-Removes all previous added listeners from this element
-Removes all previous added listeners from this element
-this
-Clears any opacity settings from this element. Required in some cases for IE.
-Clears any opacity settings from this element. Required in some cases for IE.
-this
-Clear positioning back to the default when the document was loaded
-Clear positioning back to the default when the document was loaded
-(optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
-this
-Returns true if this element is an ancestor of the passed element
-Returns true if this element is an ancestor of the passed element
-The element to check
-True if this element is an ancestor of el, else false
-Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
-DomHelper element config object. If no tag is specified (e.g., {tag:'input'}) then a div will be -automatically generated with the specified attributes.
-(optional) a child element of this element
-(optional) true to return the dom node instead of creating an Element
-The new child element
-Creates a proxy element of this element
-Creates a proxy element of this element
-The class name of the proxy element or a DomHelper config object
-(optional) The element or element id to render the proxy to (defaults to document.body)
-(optional) True to align and size the proxy to this element now (defaults to false)
-The new proxy element
-Creates an iframe shim for this element to keep selects and other windowed objects from -showing through.
-Creates an iframe shim for this element to keep selects and other windowed objects from -showing through.
-The new shim element
-Removes this element's dom reference. Note that event and cache removal is handled at Ext.removeNode. -Alias to remove.
-Removes this element's dom reference. Note that event and cache removal is handled at Ext.removeNode. -Alias to remove.
-Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
-The CSS selector
-(optional) True to return the DOM node instead of Ext.core.Element (defaults to false)
-The child Ext.core.Element (or DOM node if returnDom = true)
-Convenience method for setVisibilityMode(Element.DISPLAY)
-Convenience method for setVisibilityMode(Element.DISPLAY)
-(optional) What to set display to when visible
-this
-Fade an element in (from transparent to opaque). The ending opacity can be specified -using the endOpacity config option. -Usage:
- -// default: fade in from opacity 0 to 100%
-el.fadeIn();
-
-// custom: fade in from opacity 0 to 75% over 2 seconds
-el.fadeIn({ endOpacity: .75, duration: 2});
-
-// common config options shown with default values
-el.fadeIn({
- endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
- easing: 'easeOut',
- duration: 500
-});
-
-
-(optional) Object literal with any of the Fx config options
-The Element
-Fade an element out (from opaque to transparent). The ending opacity can be specified -using the endOpacity config option. Note that IE may require -useDisplay:true in order to redisplay correctly. -Usage:
- -// default: fade out from the element's current opacity to 0
-el.fadeOut();
-
-// custom: fade out from the element's current opacity to 25% over 2 seconds
-el.fadeOut({ endOpacity: .25, duration: 2});
-
-// common config options shown with default values
-el.fadeOut({
- endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
- easing: 'easeOut',
- duration: 500,
- remove: false,
- useDisplay: false
-});
-
-
-(optional) Object literal with any of the Fx config options
-The Element
-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)
-The simple selector to test
-(optional) The max depth to search as a number or element (defaults to 50 || document.body)
-(optional) True to return a Ext.core.Element object instead of DOM node
-The matching DOM node (or null if no match was found)
-Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
-Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
-The simple selector to test
-(optional) The max depth to
- - search as a number or element (defaults to 10 || document.body)
-
-(optional) True to return a Ext.core.Element object instead of DOM node
-The matching DOM node (or null if no match was found)
-Gets the first child, skipping text nodes
-Gets the first child, skipping text nodes
-(optional) Find the next sibling that matches the passed simple selector
-(optional) True to return a raw dom node instead of an Ext.core.Element
-The first child or null
-Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element - -the dom node can be overwritten by other code. Shorthand of Ext.core.Element.fly
- - -Use this to make one-time references to DOM elements which are not going to be accessed again either by -application 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.core.Element class.
- -The dom node or id
-(optional) Allows for creation of named reusable flyweights to prevent conflicts -(e.g. internally Ext uses "_global")
-The shared Element object (or null if no matching element was found)
-Tries to focus the element. Any exceptions are caught and ignored.
-Tries to focus the element. Any exceptions are caught and ignored.
-(optional) Milliseconds to defer the focus
-this
-Shows a ripple of exploding, attenuating borders to draw attention to an Element. -Usage:
- -// default: a single light blue ripple
-el.frame();
-
-// custom: 3 red ripples lasting 3 seconds total
-el.frame("#ff0000", 3, { duration: 3 });
-
-// common config options shown with default values
-el.frame("#C3DAF9", 1, {
- duration: 1 //duration of each individual ripple.
- // Note: Easing is not configurable and will be ignored if included
-});
-
-
-(optional) The color of the border. Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
-(optional) The number of ripples to display (defaults to 1)
-(optional) Object literal with any of the Fx config options
-The Element
-Returns the top Element that is located at the passed coordinates
-Returns the top Element that is located at the passed coordinates
-The x coordinate
-The y coordinate
-The found Element
-Retrieves Ext.core.Element objects.
- -This method does not retrieve Components. This method -retrieves Ext.core.Element objects which encapsulate DOM elements. To retrieve a Component by -its ID, use Ext.ComponentManager.get.
- - -Uses simple caching to consistently return the same object. Automatically fixes if an -object was recreated with the same id via AJAX or DOM.
- -The id of the node, a DOM Node or an existing Element.
-The Element object (or null if no matching element was found)
-Gets the x,y coordinates to align this element with another element. See alignTo for more info on the -supported position values.
-The element to align to.
-(optional, defaults to "tl-bl?") The position to align to.
-(optional) Offset the positioning by [x, y]
-[x, y]
-Gets the x,y coordinates specified by the anchor position on the element.
-Gets the x,y coordinates specified by the anchor position on the element.
-(optional) The specified anchor position (defaults to "c"). See alignTo -for details on supported anchor positions.
-(optional) True to get the local (element top/left-relative) anchor position instead -of page coordinates
-(optional) An object containing the size to use for calculating anchor position -{width: (target width), height: (target height)} (defaults to the element's current size)
-[x, y] An array containing the element's x and y coordinates
-Returns the value of a namespaced attribute from the element's underlying DOM node.
-Returns the value of a namespaced attribute from the element's underlying DOM node.
-The namespace in which to look for the attribute
-The attribute name
-The attribute value -@deprecated
-Gets the width of the border(s) for the specified side(s)
-Gets the width of the border(s) for the specified side(s)
-Can be t, l, r, b or any combination of those to add multiple values. For example, -passing 'lr' would get the border left width + the border right width.
-The width of the sides passed added together
-Gets the bottom Y coordinate of the element (element Y position + element height)
-Gets the bottom Y coordinate of the element (element Y position + element height)
-True to get the local css position instead of page coordinate
-Return an object defining the area of this Element which can be passed to setBox to -set another Element's size/location to match this element.
-(optional) If true a box for the content of the element is returned.
-(optional) If true the element's left and top are returned instead of page x/y.
-box An object in the format
- -{
- x: <Element's X position>,
- y: <Element's Y position>,
- width: <Element's width>,
- height: <Element's height>,
- bottom: <Element's lower bound>,
- right: <Element's rightmost bound>
-}
-
-
-
-The returned object may also be addressed as an Array where index 0 contains the X position -and index 1 contains the Y position. So the result may also be used for setXY
-Calculates the x, y to center this element on the screen
-Calculates the x, y to center this element on the screen
-The x, y values [x, y]
-Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values -are convert to standard 6 digit hex color.
-The css attribute
-The default value to use when a valid color isn't found
-(optional) defaults to #. Use an empty string when working with -color anims.
-Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders -when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements -if a height has not been set using CSS.
-Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders -when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements -if a width has not been set using CSS.
-Returns the [X, Y]
vector by which this element must be translated to make a best attempt
-to constrain within the passed constraint. Returns false
is this element does not need to be moved.
Priority is given to constraining the top and left within the constraint.
- - -The constraint may either be an existing element into which this element is to be constrained, or -an Region into which this element is to be constrained.
- -{Mixed} The Element or Region into which this element is to be constrained.
-{Array} A proposed [X, Y]
position to test for validity and to produce a vector for instead
-of using this Element's current position;
If this element needs to be translated, an [X, Y]
-vector by which this element must be translated. Otherwise, false
.
Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
- - for more information about the sides.
-
-Returns the offset height of the element
-Returns the offset height of the element
-(optional) true to get the height minus borders and padding
-The element's height
-Gets the left X coordinate
-Gets the left X coordinate
-True to get the local css position instead of page coordinate
-Gets this element's ElementLoader
-Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed, -then it returns the calculated width of the sides (see getPadding)
-(optional) Any combination of l, r, t, b to get the sum of those sides
-Returns the offsets of this element from the passed element. Both element must be part of the DOM tree and not have display:none to have page coordinates.
-The element to get the offsets from.
-The XY page offsets (e.g. [100, -200])
-Retrieves the current orientation of the window. This is calculated by -determing if the height is greater than the width.
-Orientation of window: 'portrait' or 'landscape'
-Gets the width of the padding(s) for the specified side(s)
-Gets the width of the padding(s) for the specified side(s)
-Can be t, l, r, b or any combination of those to add multiple values. For example, -passing 'lr' would get the padding left + the padding right.
-The padding of the sides passed added together
-Return an object defining the area of this Element which can be passed to setBox to -set another Element's size/location to match this element.
-(optional) If true an Ext.util.Region will be returned
-box An object in the format
- -{
- x: <Element's X position>,
- y: <Element's Y position>,
- width: <Element's width>,
- height: <Element's height>,
- bottom: <Element's lower bound>,
- right: <Element's rightmost bound>
-}
-
-
-
-The returned object may also be addressed as an Array where index 0 contains the X position -and index 1 contains the Y position. So the result may also be used for setXY
-Gets an object with all CSS positioning properties. Useful along with setPostioning to get -snapshot before performing an update and then restoring the element.
-Returns the region of this element. -The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
-A Ext.util.Region containing "top, left, bottom, right" member data.
-Gets the right X coordinate of the element (element X position + element width)
-Gets the right X coordinate of the element (element X position + element width)
-True to get the local css position instead of page coordinate
-Returns the current scroll position of the element.
-Returns the current scroll position of the element.
-An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
-Returns the size of the element.
-Returns the size of the element.
-(optional) true to get the width/size minus borders and padding
-An object containing the element's size {width: (element width), height: (element height)}
-Normalizes currentStyle and computedStyle.
-Normalizes currentStyle and computedStyle.
-The style property whose value is returned.
-The current value of the style property for this element.
-Returns the dimensions of the element available to lay content out in.
- -getStyleSize utilizes prefers style sizing if present, otherwise it chooses the larger of offsetHeight/clientHeight and offsetWidth/clientWidth. -To obtain the size excluding scrollbars, use getViewSize - -Sizing of the document body is handled at the adapter level which handles special cases for IE and strict modes, etc. - -
Returns an object with properties matching the styles requested. -For example, el.getStyles('color', 'font-size', 'width') might return -{'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
-A style name
-A style name
-.
-The style object
-Returns the width in pixels of the passed text, or the width of the text in this Element. getTextWidth
-Returns the width in pixels of the passed text, or the width of the text in this Element. getTextWidth
-The text to measure. Defaults to the innerHTML of the element.
-(Optional) The minumum value to return.
-(Optional) The maximum value to return.
-The text width in pixels.
-Gets the top Y coordinate
-Gets the top Y coordinate
-True to get the local css position instead of page coordinate
-Returns the value of the "value" attribute
-Returns the value of the "value" attribute
-true to parse the value as a number
-Returns the content region of this element. That is the region within the borders and padding.
-Returns the content region of this element. That is the region within the borders and padding.
-A Ext.util.Region containing "top, left, bottom, right" member data.
-Returns the dimensions of the element available to lay content out in.
-
If the element (or any ancestor element) has CSS style display : none
, the dimensions will be zero.
var vpSize = Ext.getBody().getViewSize();
-
- // all Windows created afterwards will have a default value of 90% height and 95% width
- Ext.Window.override({
- width: vpSize.width * 0.9,
- height: vpSize.height * 0.95
- });
- // To handle window resizing you would have to hook onto onWindowResize.
-
-
-getViewSize utilizes clientHeight/clientWidth which excludes sizing of scrollbars.
-To obtain the size including scrollbars, use getStyleSize
-
-Sizing of the document body is handled at the adapter level which handles special cases for IE and strict modes, etc.
-
-Retrieves the viewport height of the window.
-Retrieves the viewport height of the window.
-viewportHeight
-Retrieves the viewport width of the window.
-Retrieves the viewport width of the window.
-viewportWidth
-Returns the offset width of the element
-Returns the offset width of the element
-(optional) true to get the width minus borders and padding
-The element's width
-Gets the current X position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-The X position of the element
-Gets the current position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-The XY position of the element
-Gets the current Y position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-The Y position of the element
-Slides the element while fading it out of view. An anchor point can be optionally passed to set the -ending point of the effect. -Usage:
- -// default: slide the element downward while fading out
-el.ghost();
-
-// custom: slide the element out to the right with a 2-second duration
-el.ghost('r', { duration: 2 });
-
-// common config options shown with default values
-el.ghost('b', {
- easing: 'easeOut',
- duration: 500
-});
-
-
-(optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
-(optional) Object literal with any of the Fx config options
-The Element
-Hide this element - Uses display mode to determine whether to use "display" or "visibility". See setVisible.
-Hide this element - Uses display mode to determine whether to use "display" or "visibility". See setVisible.
-(optional) true for the default animation or a standard Element animation config object
-this
-Highlights the Element by setting a color (applies to the background-color by default, but can be -changed using the "attr" config option) and then fading back to the original color. If no original -color is available, you should provide the "endColor" config option which will be cleared after the animation. -Usage:
- -// default: highlight background to yellow
-el.highlight();
-
-// custom: highlight foreground text to blue for 2 seconds
-el.highlight("0000ff", { attr: 'color', duration: 2 });
-
-// common config options shown with default values
-el.highlight("ffff9c", {
- attr: "backgroundColor", //can be any valid CSS property (attribute) that supports a color value
- endColor: (current color) or "ffffff",
- easing: 'easeIn',
- duration: 1000
-});
-
-
-(optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
-(optional) Object literal with any of the Fx config options
-The Element
-Sets up event handlers to call the passed functions when the mouse is moved into and out of the Element.
-Sets up event handlers to call the passed functions when the mouse is moved into and out of the Element.
-The function to call when the mouse enters the Element.
-The function to call when the mouse leaves the Element.
-(optional) The scope (this
reference) in which the functions are executed. Defaults to the Element's DOM element.
(optional) Options for the listener. See the <tt>options</tt> parameter.
-this
-Initializes a Ext.dd.DD drag drop object for this element.
-Initializes a Ext.dd.DD drag drop object for this element.
-The group the DD object is member of
-The DD config object
-An object containing methods to override/implement on the DD object
-The DD object
-Initializes a Ext.dd.DDProxy object for this element.
-Initializes a Ext.dd.DDProxy object for this element.
-The group the DDProxy object is member of
-The DDProxy config object
-An object containing methods to override/implement on the DDProxy object
-The DDProxy object
-Initializes a Ext.dd.DDTarget object for this element.
-Initializes a Ext.dd.DDTarget object for this element.
-The group the DDTarget object is member of
-The DDTarget config object
-An object containing methods to override/implement on the DDTarget object
-The DDTarget object
-Inserts this element after the passed element in the DOM
-Inserts this element after the passed element in the DOM
-The element to insert after
-this
-Inserts this element before the passed element in the DOM
-Inserts this element before the passed element in the DOM
-The element before which this element will be inserted
-this
-Inserts (or creates) an element (or DomHelper config) as the first child of this element
-Inserts (or creates) an element (or DomHelper config) as the first child of this element
-The id or element to insert or a DomHelper config to create and insert
-The new child
-Inserts an html fragment into this element
-Inserts an html fragment into this element
-Where to insert the html in relation to this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
-The HTML fragment
-(optional) True to return an Ext.core.Element (defaults to false)
-The inserted node (or nearest related if more than 1 inserted)
-Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
-Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
-The id, element to insert or a DomHelper config to create and insert or an array of any of those.
-(optional) 'before' or 'after' defaults to before
-(optional) True to return the .;ll;l,raw DOM element instead of Ext.core.Element
-The inserted Element. If an array is passed, the last inserted element is returned.
-Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
-Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
-The simple selector to test
-True if this element matches the selector, else false
-Tests various css rules/browsers to determine if this element uses a border box
-Tests various css rules/browsers to determine if this element uses a border box
-Returns true if this element is masked. Also re-centers any displayed message within the mask.
-Returns true if this element is masked. Also re-centers any displayed message within the mask.
-Returns true if this element is scrollable.
-Returns true if this element is scrollable.
-Checks whether the element is currently visible using both visibility and display properties.
-Checks whether the element is currently visible using both visibility and display properties.
-True if the element is currently visible, else false
-Gets the last child, skipping text nodes
-Gets the last child, skipping text nodes
-(optional) Find the previous sibling that matches the passed simple selector
-(optional) True to return a raw dom node instead of an Ext.core.Element
-The last child or null
-Direct access to the Ext.ElementLoader Ext.ElementLoader.load method. The method takes the same object -parameter as Ext.ElementLoader.load
-this
-Puts a mask over this element to disable user interaction. Requires core.css. -This method can only be applied to elements which accept child nodes.
-(optional) A message to display in the mask
-(optional) A css class to apply to the msg element
-The mask element
-Monitors this Element for the mouse leaving. Calls the function after the specified delay only if -the mouse was not moved back into the Element within the delay. If the mouse was moved -back in, the function is not called.
-The delay in milliseconds to wait for possible mouse re-entry before calling the handler function.
-The function to call if the mouse remains outside of this Element for the specified time.
-The scope (this
reference) in which the handler function executes. Defaults to this Element.
The listeners object which was added to this element so that monitoring can be stopped. Example usage:
-// Hide the menu if the mouse moves out for 250ms or more
-this.mouseLeaveMonitor = this.menuEl.monitorMouseLeave(250, this.hideMenu, this);
... -// Remove mouseleave monitor on menu destroy -this.menuEl.un(this.mouseLeaveMonitor); -
-Move this element relative to its current position.
-Move this element relative to its current position.
-Possible values are: "l" (or "left"), "r" (or "right"), "t" (or "top", or "up"), "b" (or "bottom", or "down").
-How far to move the element in pixels
-(optional) true for the default animation or a standard Element animation config object
-this
-Sets the position of the element in page coordinates, regardless of how the element is positioned. -The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-X value for new position (coordinates are page-based)
-Y value for new position (coordinates are page-based)
-(optional) True for the default animation, or a standard Element animation config object
-this
-Gets the next sibling, skipping text nodes
-Gets the next sibling, skipping text nodes
-(optional) Find the next sibling that matches the passed simple selector
-(optional) True to return a raw dom node instead of an Ext.core.Element
-The next sibling or null
-Normalizes CSS property keys from dash delimited to camel case JavaScript Syntax. -For example:
- -The property to normalize
-The normalized string
-Appends an event handler (shorthand for addListener).
-Appends an event handler (shorthand for addListener).
-The name of event to handle.
-The handler function the event invokes.
-(optional) The scope (this
reference) in which the handler function is executed.
(optional) An object containing standard addListener options
-Gets the parent node for this element, optionally chaining up trying to match a selector
-Gets the parent node for this element, optionally chaining up trying to match a selector
-(optional) Find a parent node that matches the passed simple selector
-(optional) True to return a raw dom node instead of an Ext.core.Element
-The parent node or null
-Parses a number or string representing margin sizes into an object. Supports CSS-style margin declarations -(e.g. 10, "10", "10 10", "10 10 10" and "10 10 10 10" are all valid options and would return the same result)
-The encoded margins
-An object with margin sizes for top, right, bottom and left
-Converts a CSS string into an object with a property for each style.
- --The sample code below would return an object with 2 properties, one -for background-color and one for color.
- - -var css = 'background-color: red;color: blue; ';
-console.log(Ext.core.Element.parseStyles(css));
-
-
-A CSS string
-styles
-@deprecated 4.0 -Creates a pause before any subsequent queued effects begin. If there are -no effects queued after the pause it will have no effect. -Usage:
- -el.pause(1);
-
-
-The length of time to pause (in seconds)
-The Element
-Initializes positioning on this element. If a desired position is not passed, it will make the -the element positioned relative IF it is not already positioned.
-(optional) Positioning to use "relative", "absolute" or "fixed"
-(optional) The zIndex to apply
-(optional) Set the page X position
-(optional) Set the page Y position
-Gets the previous sibling, skipping text nodes
-Gets the previous sibling, skipping text nodes
-(optional) Find the previous sibling that matches the passed simple selector
-(optional) True to return a raw dom node instead of an Ext.core.Element
-The previous sibling or null
-Fades the element out while slowly expanding it in all directions. When the effect is completed, the -element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. -Usage:
- -// default
-el.puff();
-
-// common config options shown with default values
-el.puff({
- easing: 'easeOut',
- duration: 500,
- useDisplay: false
-});
-
-
-(optional) Object literal with any of the Fx config options
-The Element
-Recursively removes all previous added listeners from this element and its children
-Recursively removes all previous added listeners from this element and its children
-this
-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).
-The CSS selector
-An array of the matched nodes
-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.
-The CSS class to add, or an array of classes
-this
-Create an event handler on this element such that when the event fires and is handled by this element, -it will be relayed to another object (i.e., fired again as if it originated from that object instead).
-The type of event to relay
-Any object that extends Ext.util.Observable that will provide the context -for firing the relayed event
-Removes this element's dom reference. Note that event and cache removal is handled at Ext.removeNode
- -Removes this element's dom reference. Note that event and cache removal is handled at Ext.removeNode
- -Removes all previous added listeners from this element
-Removes all previous added listeners from this element
-this
-Removes one or more CSS classes from the element.
-Removes one or more CSS classes from the element.
-The CSS classes to remove separated by space, or an array of classes
-this
-Removes an event handler from this element. The shorthand version un is equivalent. -Note: if a scope was explicitly specified when adding the -listener, the same scope must be specified here. -Example:
- -el.removeListener('click', this.handlerFn);
-// or
-el.un('click', this.handlerFn);
-
-
-The name of the event from which to remove the handler.
-The handler function to remove. This must be a reference to the function passed into the addListener call.
-If a scope (this
reference) was specified when the listener was added,
-then this must refer to the same object.
this
-Forces the browser to repaint this element
-Forces the browser to repaint this element
-this
-Replaces the passed element with this element
-Replaces the passed element with this element
-The element to replace
-this
-Replaces a CSS class on the element with another. If the old name does not exist, the new name will simply be added.
-Replaces a CSS class on the element with another. If the old name does not exist, the new name will simply be added.
-The CSS class to replace
-The replacement CSS class
-this
-Replaces this element with the passed element
-Replaces this element with the passed element
-The new element or a DomHelper config of an element to create
-this
-@deprecated 4.0 -Animates the transition of an element's dimensions from a starting height/width -to an ending height/width. This method is a convenience implementation of shift. -Usage:
- -// change height and width to 100x100 pixels
-el.scale(100, 100);
-
-// common config options shown with default values. The height and width will default to
-// the element's existing values if passed as null.
-el.scale(
- [element's width],
- [element's height], {
- easing: 'easeOut',
- duration: .35
- }
-);
-
-
-The new width (pass undefined to keep the original width)
-The new height (pass undefined to keep the original height)
-(optional) Object literal with any of the Fx config options
-The Element
-Scrolls this element the specified direction. Does bounds checking to make sure the scroll is -within this element's scrollable range.
-Possible values are: "l" (or "left"), "r" (or "right"), "t" (or "top", or "up"), "b" (or "bottom", or "down").
-How far to scroll the element in pixels
-(optional) true for the default animation or a standard Element animation config object
-Returns true if a scroll was triggered or false if the element -was scrolled as far as it could go.
-Scrolls this element into view within the passed container.
-Scrolls this element into view within the passed container.
-(optional) The container element to scroll (defaults to document.body). Should be a -string (id), dom node, or Ext.core.Element.
-(optional) False to disable horizontal scroll (defaults to true)
-this
-Scrolls this element the specified scroll point. It does NOT do bounds checking so if you scroll to a weird value it will try to do it. For auto bounds checking, use scroll().
-Either "left" for scrollLeft values or "top" for scrollTop values.
-The new scroll value
-(optional) true for the default animation or a standard Element animation config object
-this
-Creates a Ext.CompositeElement for child nodes based on the passed CSS selector (the selector should not contain an id).
-The CSS selector
-The composite element
-Serializes a DOM form into a url encoded string
-Serializes a DOM form into a url encoded string
-The form
-The url encoded form
-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)
-The object with the attributes
-(optional) false to override the default setAttribute to use expandos.
-this
-Sets the element's CSS bottom style.
-Sets the element's CSS bottom style.
-The bottom CSS property value
-this
-Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
-X value for new position (coordinates are page-based)
-Y value for new position (coordinates are page-based)
-The new width. This may be one of:
The new height. This may be one of:
(optional) true for the default animation or a standard Element animation config object
-this
-Sets the element's box. Use getBox() on another element to get a box obj. If animate is true then width, height, x and y will be animated concurrently.
-The box to fill {x, y, width, height}
-(optional) Whether to adjust for box-model issues automatically
-(optional) true for the default animation or a standard Element animation config object
-this
-Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
-Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
-Boolean value to display the element using its default display, or a string to set the display directly.
-this
-Set the height of this Element.
- -// change the height to 200px and animate with default configuration
-Ext.fly('elementId').setHeight(200, true);
-
-// change the height to 150px and animate with a custom configuration
-Ext.fly('elId').setHeight(150, {
- duration : .5, // animation will have a duration of .5 seconds
- // will change the content to "finished"
- callback: function(){ this.update("finished"); }
-});
-
-
-The new height. This may be one of:
(optional) true for the default animation or a standard Element animation config object
-this
-Quick set left and top adding default units
-Quick set left and top adding default units
-The left CSS property value
-The top CSS property value
-this
-Sets the position of the element in page coordinates, regardless of how the element is positioned. -The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-X value for new position (coordinates are page-based)
-Y value for new position (coordinates are page-based)
-(optional) True for the default animation, or a standard Element animation config object
-this
-Set the opacity of the element
-Set the opacity of the element
-The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
-(optional) a standard Element animation config object or true for -the default animation ({duration: .35, easing: 'easeIn'})
-this
-Set positioning with an object returned by getPositioning().
-Set positioning with an object returned by getPositioning().
-this
-Sets the element's position and size the specified region. If animation is true then width, height, x and y will be animated concurrently.
-The region to fill
-(optional) true for the default animation or a standard Element animation config object
-this
-Sets the element's CSS right style.
-Sets the element's CSS right style.
-The right CSS property value
-this
-Set the size of this Element. If animation is true, both width and height will be animated concurrently.
-Set the size of this Element. If animation is true, both width and height will be animated concurrently.
-The new width. This may be one of:
{width: widthValue, height: heightValue}
.The new height. This may be one of:
(optional) true for the default animation or a standard Element animation config object
-this
-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.
-The style property to be set, or an object of multiple styles.
-(optional) The value to apply to the given property, or null if an object was passed.
-this
-Sets the element's visibility mode. When setVisible() is called it -will use this to determine whether to set the visibility or the display property.
-Ext.core.Element.VISIBILITY or Ext.core.Element.DISPLAY
-this
-Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use -the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
-Whether the element is visible
-(optional) True for the default animation, or a standard Element animation config object
-this
-Set the width of this Element.
-Set the width of this Element.
-The new width. This may be one of:
(optional) true for the default animation or a standard Element animation config object
-this
-Sets the X position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-X position of the element
-(optional) True for the default animation, or a standard Element animation config object
-this
-Sets the position of the element in page coordinates, regardless of how the element is positioned. -The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-Contains X & Y [x, y] values for new position (coordinates are page-based)
-(optional) True for the default animation, or a standard Element animation config object
-this
-Sets the Y position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
-Y position of the element
-(optional) True for the default animation, or a standard Element animation config object
-this
-Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically -incremented depending upon the presence of a shim or a shadow in so that it always shows above those two associated elements.
- - -Any shim, will be assigned the passed z-index. A shadow will be assigned the next highet z-index, and the Layer's -element will receive the highest z-index. - -
The new z-index to set
-The Layer
-@deprecated 4.0 -Animates the transition of any combination of an element's dimensions, xy position and/or opacity. -Any of these properties not specified in the config object will not be changed. This effect -requires that at least one new dimension, position or opacity setting must be passed in on -the config object in order for the function to have any effect. -Usage:
- -// slide the element horizontally to x position 200 while changing the height and opacity
-el.shift({ x: 200, height: 50, opacity: .8 });
-
-// common config options shown with default values.
-el.shift({
- width: [element's width],
- height: [element's height],
- x: [element's x position],
- y: [element's y position],
- opacity: [element's opacity],
- easing: 'easeOut',
- duration: .35
-});
-
-
-Object literal with any of the Fx config options
-The Element
-Show this element - Uses display mode to determine whether to use "display" or "visibility". See setVisible.
-Show this element - Uses display mode to determine whether to use "display" or "visibility". See setVisible.
-(optional) true for the default animation or a standard Element animation config object
-this
-Slides the element into view. An anchor point can be optionally passed to set the point of -origin for the slide effect. This function automatically handles wrapping the element with -a fixed-size container if needed. See the Fx class overview for valid anchor point options. -Usage:
- -// default: slide the element in from the top
-el.slideIn();
-
-// custom: slide the element in from the right with a 2-second duration
-el.slideIn('r', { duration: 2 });
-
-// common config options shown with default values
-el.slideIn('t', {
- easing: 'easeOut',
- duration: 500
-});
-
-
-(optional) One of the valid Fx anchor positions (defaults to top: 't')
-(optional) Object literal with any of the Fx config options
-The Element
-Slides the element out of view. An anchor point can be optionally passed to set the end point -for the slide effect. When the effect is completed, the element will be hidden (visibility = -'hidden') but block elements will still take up space in the document. The element must be removed -from the DOM using the 'remove' config option if desired. This function automatically handles -wrapping the element with a fixed-size container if needed. See the Fx class overview for valid anchor point options. -Usage:
- -// default: slide the element out to the top
-el.slideOut();
-
-// custom: slide the element out to the right with a 2-second duration
-el.slideOut('r', { duration: 2 });
-
-// common config options shown with default values
-el.slideOut('t', {
- easing: 'easeOut',
- duration: 500,
- remove: false,
- useDisplay: false
-});
-
-
-(optional) One of the valid Fx anchor positions (defaults to top: 't')
-(optional) Object literal with any of the Fx config options
-The Element
-Stops the specified event(s) from bubbling and optionally prevents the default action
-Stops the specified event(s) from bubbling and optionally prevents the default action
-an event / array of events to stop from bubbling
-(optional) true to prevent the default action too
-this
-Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television). -When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still -take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired. -Usage:
- -// default
-el.switchOff();
-
-// all config options shown with default values
-el.switchOff({
- easing: 'easeIn',
- duration: .3,
- remove: false,
- useDisplay: false
-});
-
-
-(optional) Object literal with any of the Fx config options
-The Element
-Toggles the element's visibility or display, depending on visibility mode.
-Toggles the element's visibility or display, depending on visibility mode.
-(optional) True for the default animation, or a standard Element animation config object
-this
-Translates the passed page coordinates into left/top css values for this element
-Translates the passed page coordinates into left/top css values for this element
-The page x or an array containing [x, y]
-(optional) The page y, required if x is not an array
-An object with left and top properties. e.g. {left: (value), top: (value)}
-Removes an event handler from this element (see removeListener for additional notes).
-Removes an event handler from this element (see removeListener for additional notes).
-The name of the event from which to remove the handler.
-The handler function to remove. This must be a reference to the function passed into the addListener call.
-If a scope (this
reference) was specified when the listener was added,
-then this must refer to the same object.
this
-Parses a number or string representing margin sizes into an object. Supports CSS-style margin declarations -(e.g. 10, "10", "10 10", "10 10 10" and "10 10 10 10" are all valid options and would return the same result)
-The encoded margins
-The type of units to add
-An string with unitized (px if units is not specified) metrics for top, right, bottom and left
-Disables text selection for this element (normalized across browsers)
-Disables text selection for this element (normalized across browsers)
-this
-Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child). -This is a shortcut for findParentNode() that always returns an Ext.core.Element.
-The simple selector to test
-(optional) The max depth to
- - search as a number or element (defaults to 10 || document.body)
-
-The matching DOM node (or null if no match was found)
-Update the innerHTML of this element
-Update the innerHTML of this element
-The new HTML
-this
-Creates and wraps this element with another element
-Creates and wraps this element with another element
-(optional) DomHelper element config object for the wrapper element or null for an empty div
-(optional) True to return the raw DOM element instead of Ext.core.Element
-The newly created wrapper element
-Where supported. Fires when an element is activated, for instance, through a mouse click or a keypress.
-Where supported. Fires when an element is activated, for instance, through a mouse click or a keypress.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Where supported. Fires when an attribute has been modified.
-Where supported. Fires when an attribute has been modified.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Where supported. Fires when the character data has been modified.
-Where supported. Fires when the character data has been modified.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Where supported. Similar to HTML focus event, but can be applied to any focusable element.
-Where supported. Similar to HTML focus event, but can be applied to any focusable element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Where supported. Similar to HTML blur event, but can be applied to any focusable element.
-Where supported. Similar to HTML blur event, but can be applied to any focusable element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Where supported. Fires when a node has been added as a child of another node.
-Where supported. Fires when a node has been added as a child of another node.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Where supported. Fires when a node is being inserted into a document.
-Where supported. Fires when a node is being inserted into a document.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Where supported. Fires when a descendant node of the element is removed.
-Where supported. Fires when a descendant node of the element is removed.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Where supported. Fires when a node is being removed from a document.
-Where supported. Fires when a node is being removed from a document.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Where supported. Fires when the subtree is modified.
-Where supported. Fires when the subtree is modified.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when an object/image is stopped from loading before completely loaded.
-Fires when an object/image is stopped from loading before completely loaded.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when an element loses focus either via the pointing device or by tabbing navigation.
-Fires when an element loses focus either via the pointing device or by tabbing navigation.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a control loses the input focus and its value has been modified since gaining focus.
-Fires when a control loses the input focus and its value has been modified since gaining focus.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a mouse click is detected within the element.
-Fires when a mouse click is detected within the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a mouse double click is detected within the element.
-Fires when a mouse double click is detected within the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when an object/image/frame cannot be loaded properly.
-Fires when an object/image/frame cannot be loaded properly.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when an element receives focus either via the pointing device or by tab navigation.
-Fires when an element receives focus either via the pointing device or by tab navigation.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a keydown is detected within the element.
-Fires when a keydown is detected within the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a keypress is detected within the element.
-Fires when a keypress is detected within the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a keyup is detected within the element.
-Fires when a keyup is detected within the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when the user agent finishes loading all content within the element. Only supported by window, frames, objects and images.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a mousedown is detected within the element.
-Fires when a mousedown is detected within the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when the mouse enters the element.
-Fires when the mouse enters the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when the mouse leaves the element.
-Fires when the mouse leaves the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a mousemove is detected with the element.
-Fires when a mousemove is detected with the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a mouseout is detected with the element.
-Fires when a mouseout is detected with the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a mouseover is detected within the element.
-Fires when a mouseover is detected within the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a mouseup is detected within the element.
-Fires when a mouseup is detected within the element.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a form is reset.
-Fires when a form is reset.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a document view is resized.
-Fires when a document view is resized.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a document view is scrolled.
-Fires when a document view is scrolled.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a user selects some text in a text field, including input and textarea.
-Fires when a user selects some text in a text field, including input and textarea.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when a form is submitted.
-Fires when a form is submitted.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-Fires when the user agent removes all content from a window or frame. For elements, it fires when the target element or any of its content has been removed.
-The Ext.EventObject encapsulating the DOM event.
-The target of the event.
-The options configuration passed to the addListener call.
-