Element.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:39k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.Element
  9.  * <p>Encapsulates a DOM element, adding simple DOM manipulation facilities, normalizing for browser differences.</p>
  10.  * <p>All instances of this class inherit the methods of {@link Ext.Fx} making visual effects easily available to all DOM elements.</p>
  11.  * <p>Note that the events documented in this class are not Ext events, they encapsulate browser events. To
  12.  * access the underlying browser event, see {@link Ext.EventObject#browserEvent}. Some older
  13.  * browsers may not support the full range of events. Which events are supported is beyond the control of ExtJs.</p>
  14.  * Usage:<br>
  15. <pre><code>
  16. // by id
  17. var el = Ext.get("my-div");
  18. // by DOM element reference
  19. var el = Ext.get(myDivElement);
  20. </code></pre>
  21.  * <b>Animations</b><br />
  22.  * <p>When an element is manipulated, by default there is no animation.</p>
  23.  * <pre><code>
  24. var el = Ext.get("my-div");
  25. // no animation
  26. el.setWidth(100);
  27.  * </code></pre>
  28.  * <p>Many of the functions for manipulating an element have an optional "animate" parameter.  This
  29.  * parameter can be specified as boolean (<tt>true</tt>) for default animation effects.</p>
  30.  * <pre><code>
  31. // default animation
  32. el.setWidth(100, true);
  33.  * </code></pre>
  34.  *
  35.  * <p>To configure the effects, an object literal with animation options to use as the Element animation
  36.  * configuration object can also be specified. Note that the supported Element animation configuration
  37.  * options are a subset of the {@link Ext.Fx} animation options specific to Fx effects.  The supported
  38.  * Element animation configuration options are:</p>
  39. <pre>
  40. Option    Default   Description
  41. --------- --------  ---------------------------------------------
  42. {@link Ext.Fx#duration duration}  .35       The duration of the animation in seconds
  43. {@link Ext.Fx#easing easing}    easeOut   The easing method
  44. {@link Ext.Fx#callback callback}  none      A function to execute when the anim completes
  45. {@link Ext.Fx#scope scope}     this      The scope (this) of the callback function
  46. </pre>
  47.  *
  48.  * <pre><code>
  49. // Element animation options object
  50. var opt = {
  51.     {@link Ext.Fx#duration duration}: 1,
  52.     {@link Ext.Fx#easing easing}: 'elasticIn',
  53.     {@link Ext.Fx#callback callback}: this.foo,
  54.     {@link Ext.Fx#scope scope}: this
  55. };
  56. // animation with some options set
  57. el.setWidth(100, opt);
  58.  * </code></pre>
  59.  * <p>The Element animation object being used for the animation will be set on the options
  60.  * object as "anim", which allows you to stop or manipulate the animation. Here is an example:</p>
  61.  * <pre><code>
  62. // using the "anim" property to get the Anim object
  63. if(opt.anim.isAnimated()){
  64.     opt.anim.stop();
  65. }
  66.  * </code></pre>
  67.  * <p>Also see the <tt>{@link #animate}</tt> method for another animation technique.</p>
  68.  * <p><b> Composite (Collections of) Elements</b></p>
  69.  * <p>For working with collections of Elements, see {@link Ext.CompositeElement}</p>
  70.  * @constructor Create a new Element directly.
  71.  * @param {String/HTMLElement} element
  72.  * @param {Boolean} forceNew (optional) By default the constructor checks to see if there is already an instance of this element in the cache and if there is it returns the same instance. This will skip that check (useful for extending this class).
  73.  */
  74. (function(){
  75. var DOC = document;
  76. Ext.Element = function(element, forceNew){
  77.     var dom = typeof element == "string" ?
  78.               DOC.getElementById(element) : element,
  79.         id;
  80.     if(!dom) return null;
  81.     id = dom.id;
  82.     if(!forceNew && id && Ext.elCache[id]){ // element object already exists
  83.         return Ext.elCache[id].el;
  84.     }
  85.     /**
  86.      * The DOM element
  87.      * @type HTMLElement
  88.      */
  89.     this.dom = dom;
  90.     /**
  91.      * The DOM element ID
  92.      * @type String
  93.      */
  94.     this.id = id || Ext.id(dom);
  95. };
  96. var D = Ext.lib.Dom,
  97.     DH = Ext.DomHelper,
  98.     E = Ext.lib.Event,
  99.     A = Ext.lib.Anim,
  100.     El = Ext.Element,
  101.     EC = Ext.elCache;
  102. El.prototype = {
  103.     /**
  104.      * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
  105.      * @param {Object} o The object with the attributes
  106.      * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
  107.      * @return {Ext.Element} this
  108.      */
  109.     set : function(o, useSet){
  110.         var el = this.dom,
  111.             attr,
  112.             val,
  113.             useSet = (useSet !== false) && !!el.setAttribute;
  114.         for(attr in o){
  115.             if (o.hasOwnProperty(attr)) {
  116.                 val = o[attr];
  117.                 if (attr == 'style') {
  118.                     DH.applyStyles(el, val);
  119.                 } else if (attr == 'cls') {
  120.                     el.className = val;
  121.                 } else if (useSet) {
  122.                     el.setAttribute(attr, val);
  123.                 } else {
  124.                     el[attr] = val;
  125.                 }
  126.             }
  127.         }
  128.         return this;
  129.     },
  130. //  Mouse events
  131.     /**
  132.      * @event click
  133.      * Fires when a mouse click is detected within the element.
  134.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  135.      * @param {HtmlElement} t The target of the event.
  136.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  137.      */
  138.     /**
  139.      * @event contextmenu
  140.      * Fires when a right click is detected within the element.
  141.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  142.      * @param {HtmlElement} t The target of the event.
  143.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  144.      */
  145.     /**
  146.      * @event dblclick
  147.      * Fires when a mouse double click is detected within the element.
  148.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  149.      * @param {HtmlElement} t The target of the event.
  150.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  151.      */
  152.     /**
  153.      * @event mousedown
  154.      * Fires when a mousedown is detected within the element.
  155.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  156.      * @param {HtmlElement} t The target of the event.
  157.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  158.      */
  159.     /**
  160.      * @event mouseup
  161.      * Fires when a mouseup is detected within the element.
  162.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  163.      * @param {HtmlElement} t The target of the event.
  164.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  165.      */
  166.     /**
  167.      * @event mouseover
  168.      * Fires when a mouseover is detected within the element.
  169.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  170.      * @param {HtmlElement} t The target of the event.
  171.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  172.      */
  173.     /**
  174.      * @event mousemove
  175.      * Fires when a mousemove is detected with the element.
  176.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  177.      * @param {HtmlElement} t The target of the event.
  178.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  179.      */
  180.     /**
  181.      * @event mouseout
  182.      * Fires when a mouseout is detected with the element.
  183.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  184.      * @param {HtmlElement} t The target of the event.
  185.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  186.      */
  187.     /**
  188.      * @event mouseenter
  189.      * Fires when the mouse enters the element.
  190.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  191.      * @param {HtmlElement} t The target of the event.
  192.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  193.      */
  194.     /**
  195.      * @event mouseleave
  196.      * Fires when the mouse leaves the element.
  197.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  198.      * @param {HtmlElement} t The target of the event.
  199.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  200.      */
  201. //  Keyboard events
  202.     /**
  203.      * @event keypress
  204.      * Fires when a keypress is detected within the element.
  205.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  206.      * @param {HtmlElement} t The target of the event.
  207.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  208.      */
  209.     /**
  210.      * @event keydown
  211.      * Fires when a keydown is detected within the element.
  212.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  213.      * @param {HtmlElement} t The target of the event.
  214.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  215.      */
  216.     /**
  217.      * @event keyup
  218.      * Fires when a keyup is detected within the element.
  219.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  220.      * @param {HtmlElement} t The target of the event.
  221.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  222.      */
  223. //  HTML frame/object events
  224.     /**
  225.      * @event load
  226.      * Fires when the user agent finishes loading all content within the element. Only supported by window, frames, objects and images.
  227.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  228.      * @param {HtmlElement} t The target of the event.
  229.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  230.      */
  231.     /**
  232.      * @event unload
  233.      * 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.
  234.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  235.      * @param {HtmlElement} t The target of the event.
  236.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  237.      */
  238.     /**
  239.      * @event abort
  240.      * Fires when an object/image is stopped from loading before completely loaded.
  241.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  242.      * @param {HtmlElement} t The target of the event.
  243.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  244.      */
  245.     /**
  246.      * @event error
  247.      * Fires when an object/image/frame cannot be loaded properly.
  248.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  249.      * @param {HtmlElement} t The target of the event.
  250.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  251.      */
  252.     /**
  253.      * @event resize
  254.      * Fires when a document view is resized.
  255.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  256.      * @param {HtmlElement} t The target of the event.
  257.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  258.      */
  259.     /**
  260.      * @event scroll
  261.      * Fires when a document view is scrolled.
  262.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  263.      * @param {HtmlElement} t The target of the event.
  264.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  265.      */
  266. //  Form events
  267.     /**
  268.      * @event select
  269.      * Fires when a user selects some text in a text field, including input and textarea.
  270.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  271.      * @param {HtmlElement} t The target of the event.
  272.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  273.      */
  274.     /**
  275.      * @event change
  276.      * Fires when a control loses the input focus and its value has been modified since gaining focus.
  277.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  278.      * @param {HtmlElement} t The target of the event.
  279.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  280.      */
  281.     /**
  282.      * @event submit
  283.      * Fires when a form is submitted.
  284.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  285.      * @param {HtmlElement} t The target of the event.
  286.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  287.      */
  288.     /**
  289.      * @event reset
  290.      * Fires when a form is reset.
  291.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  292.      * @param {HtmlElement} t The target of the event.
  293.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  294.      */
  295.     /**
  296.      * @event focus
  297.      * Fires when an element receives focus either via the pointing device or by tab navigation.
  298.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  299.      * @param {HtmlElement} t The target of the event.
  300.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  301.      */
  302.     /**
  303.      * @event blur
  304.      * Fires when an element loses focus either via the pointing device or by tabbing navigation.
  305.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  306.      * @param {HtmlElement} t The target of the event.
  307.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  308.      */
  309. //  User Interface events
  310.     /**
  311.      * @event DOMFocusIn
  312.      * Where supported. Similar to HTML focus event, but can be applied to any focusable element.
  313.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  314.      * @param {HtmlElement} t The target of the event.
  315.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  316.      */
  317.     /**
  318.      * @event DOMFocusOut
  319.      * Where supported. Similar to HTML blur event, but can be applied to any focusable element.
  320.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  321.      * @param {HtmlElement} t The target of the event.
  322.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  323.      */
  324.     /**
  325.      * @event DOMActivate
  326.      * Where supported. Fires when an element is activated, for instance, through a mouse click or a keypress.
  327.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  328.      * @param {HtmlElement} t The target of the event.
  329.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  330.      */
  331. //  DOM Mutation events
  332.     /**
  333.      * @event DOMSubtreeModified
  334.      * Where supported. Fires when the subtree is modified.
  335.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  336.      * @param {HtmlElement} t The target of the event.
  337.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  338.      */
  339.     /**
  340.      * @event DOMNodeInserted
  341.      * Where supported. Fires when a node has been added as a child of another node.
  342.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  343.      * @param {HtmlElement} t The target of the event.
  344.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  345.      */
  346.     /**
  347.      * @event DOMNodeRemoved
  348.      * Where supported. Fires when a descendant node of the element is removed.
  349.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  350.      * @param {HtmlElement} t The target of the event.
  351.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  352.      */
  353.     /**
  354.      * @event DOMNodeRemovedFromDocument
  355.      * Where supported. Fires when a node is being removed from a document.
  356.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  357.      * @param {HtmlElement} t The target of the event.
  358.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  359.      */
  360.     /**
  361.      * @event DOMNodeInsertedIntoDocument
  362.      * Where supported. Fires when a node is being inserted into a document.
  363.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  364.      * @param {HtmlElement} t The target of the event.
  365.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  366.      */
  367.     /**
  368.      * @event DOMAttrModified
  369.      * Where supported. Fires when an attribute has been modified.
  370.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  371.      * @param {HtmlElement} t The target of the event.
  372.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  373.      */
  374.     /**
  375.      * @event DOMCharacterDataModified
  376.      * Where supported. Fires when the character data has been modified.
  377.      * @param {Ext.EventObject} e The {@link Ext.EventObject} encapsulating the DOM event.
  378.      * @param {HtmlElement} t The target of the event.
  379.      * @param {Object} o The options configuration passed to the {@link #addListener} call.
  380.      */
  381.     /**
  382.      * The default unit to append to CSS values where a unit isn't provided (defaults to px).
  383.      * @type String
  384.      */
  385.     defaultUnit : "px",
  386.     /**
  387.      * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
  388.      * @param {String} selector The simple selector to test
  389.      * @return {Boolean} True if this element matches the selector, else false
  390.      */
  391.     is : function(simpleSelector){
  392.         return Ext.DomQuery.is(this.dom, simpleSelector);
  393.     },
  394.     /**
  395.      * Tries to focus the element. Any exceptions are caught and ignored.
  396.      * @param {Number} defer (optional) Milliseconds to defer the focus
  397.      * @return {Ext.Element} this
  398.      */
  399.     focus : function(defer, /* private */ dom) {
  400.         var me = this,
  401.             dom = dom || me.dom;
  402.         try{
  403.             if(Number(defer)){
  404.                 me.focus.defer(defer, null, [null, dom]);
  405.             }else{
  406.                 dom.focus();
  407.             }
  408.         }catch(e){}
  409.         return me;
  410.     },
  411.     /**
  412.      * Tries to blur the element. Any exceptions are caught and ignored.
  413.      * @return {Ext.Element} this
  414.      */
  415.     blur : function() {
  416.         try{
  417.             this.dom.blur();
  418.         }catch(e){}
  419.         return this;
  420.     },
  421.     /**
  422.      * Returns the value of the "value" attribute
  423.      * @param {Boolean} asNumber true to parse the value as a number
  424.      * @return {String/Number}
  425.      */
  426.     getValue : function(asNumber){
  427.         var val = this.dom.value;
  428.         return asNumber ? parseInt(val, 10) : val;
  429.     },
  430.     /**
  431.      * Appends an event handler to this element.  The shorthand version {@link #on} is equivalent.
  432.      * @param {String} eventName The name of event to handle.
  433.      * @param {Function} fn The handler function the event invokes. This function is passed
  434.      * the following parameters:<ul>
  435.      * <li><b>evt</b> : EventObject<div class="sub-desc">The {@link Ext.EventObject EventObject} describing the event.</div></li>
  436.      * <li><b>el</b> : HtmlElement<div class="sub-desc">The DOM element which was the target of the event.
  437.      * Note that this may be filtered by using the <tt>delegate</tt> option.</div></li>
  438.      * <li><b>o</b> : Object<div class="sub-desc">The options object from the addListener call.</div></li>
  439.      * </ul>
  440.      * @param {Object} scope (optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.
  441.      * <b>If omitted, defaults to this Element.</b>.
  442.      * @param {Object} options (optional) An object containing handler configuration properties.
  443.      * This may contain any of the following properties:<ul>
  444.      * <li><b>scope</b> Object : <div class="sub-desc">The scope (<code><b>this</b></code> reference) in which the handler function is executed.
  445.      * <b>If omitted, defaults to this Element.</b></div></li>
  446.      * <li><b>delegate</b> String: <div class="sub-desc">A simple selector to filter the target or look for a descendant of the target. See below for additional details.</div></li>
  447.      * <li><b>stopEvent</b> Boolean: <div class="sub-desc">True to stop the event. That is stop propagation, and prevent the default action.</div></li>
  448.      * <li><b>preventDefault</b> Boolean: <div class="sub-desc">True to prevent the default action</div></li>
  449.      * <li><b>stopPropagation</b> Boolean: <div class="sub-desc">True to prevent event propagation</div></li>
  450.      * <li><b>normalized</b> Boolean: <div class="sub-desc">False to pass a browser event to the handler function instead of an Ext.EventObject</div></li>
  451.      * <li><b>target</b> Ext.Element: <div class="sub-desc">Only call the handler if the event was fired on the target Element, <i>not</i> if the event was bubbled up from a child node.</div></li>
  452.      * <li><b>delay</b> Number: <div class="sub-desc">The number of milliseconds to delay the invocation of the handler after the event fires.</div></li>
  453.      * <li><b>single</b> Boolean: <div class="sub-desc">True to add a handler to handle just the next firing of the event, and then remove itself.</div></li>
  454.      * <li><b>buffer</b> Number: <div class="sub-desc">Causes the handler to be scheduled to run in an {@link Ext.util.DelayedTask} delayed
  455.      * by the specified number of milliseconds. If the event fires again within that time, the original
  456.      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</div></li>
  457.      * </ul><br>
  458.      * <p>
  459.      * <b>Combining Options</b><br>
  460.      * In the following examples, the shorthand form {@link #on} is used rather than the more verbose
  461.      * addListener.  The two are equivalent.  Using the options argument, it is possible to combine different
  462.      * types of listeners:<br>
  463.      * <br>
  464.      * A delayed, one-time listener that auto stops the event and adds a custom argument (forumId) to the
  465.      * options object. The options object is available as the third parameter in the handler function.<div style="margin: 5px 20px 20px;">
  466.      * Code:<pre><code>
  467. el.on('click', this.onClick, this, {
  468.     single: true,
  469.     delay: 100,
  470.     stopEvent : true,
  471.     forumId: 4
  472. });</code></pre></p>
  473.      * <p>
  474.      * <b>Attaching multiple handlers in 1 call</b><br>
  475.      * The method also allows for a single argument to be passed which is a config object containing properties
  476.      * which specify multiple handlers.</p>
  477.      * <p>
  478.      * Code:<pre><code>
  479. el.on({
  480.     'click' : {
  481.         fn: this.onClick,
  482.         scope: this,
  483.         delay: 100
  484.     },
  485.     'mouseover' : {
  486.         fn: this.onMouseOver,
  487.         scope: this
  488.     },
  489.     'mouseout' : {
  490.         fn: this.onMouseOut,
  491.         scope: this
  492.     }
  493. });</code></pre>
  494.      * <p>
  495.      * Or a shorthand syntax:<br>
  496.      * Code:<pre><code></p>
  497. el.on({
  498.     'click' : this.onClick,
  499.     'mouseover' : this.onMouseOver,
  500.     'mouseout' : this.onMouseOut,
  501.     scope: this
  502. });
  503.      * </code></pre></p>
  504.      * <p><b>delegate</b></p>
  505.      * <p>This is a configuration option that you can pass along when registering a handler for
  506.      * an event to assist with event delegation. Event delegation is a technique that is used to
  507.      * reduce memory consumption and prevent exposure to memory-leaks. By registering an event
  508.      * for a container element as opposed to each element within a container. By setting this
  509.      * configuration option to a simple selector, the target element will be filtered to look for
  510.      * a descendant of the target.
  511.      * For example:<pre><code>
  512. // using this markup:
  513. &lt;div id='elId'>
  514.     &lt;p id='p1'>paragraph one&lt;/p>
  515.     &lt;p id='p2' class='clickable'>paragraph two&lt;/p>
  516.     &lt;p id='p3'>paragraph three&lt;/p>
  517. &lt;/div>
  518. // utilize event delegation to registering just one handler on the container element:
  519. el = Ext.get('elId');
  520. el.on(
  521.     'click',
  522.     function(e,t) {
  523.         // handle click
  524.         console.info(t.id); // 'p2'
  525.     },
  526.     this,
  527.     {
  528.         // filter the target element to be a descendant with the class 'clickable'
  529.         delegate: '.clickable'
  530.     }
  531. );
  532.      * </code></pre></p>
  533.      * @return {Ext.Element} this
  534.      */
  535.     addListener : function(eventName, fn, scope, options){
  536.         Ext.EventManager.on(this.dom,  eventName, fn, scope || this, options);
  537.         return this;
  538.     },
  539.     /**
  540.      * Removes an event handler from this element.  The shorthand version {@link #un} is equivalent.
  541.      * <b>Note</b>: if a <i>scope</i> was explicitly specified when {@link #addListener adding} the
  542.      * listener, the same scope must be specified here.
  543.      * Example:
  544.      * <pre><code>
  545. el.removeListener('click', this.handlerFn);
  546. // or
  547. el.un('click', this.handlerFn);
  548. </code></pre>
  549.      * @param {String} eventName The name of the event from which to remove the handler.
  550.      * @param {Function} fn The handler function to remove. <b>This must be a reference to the function passed into the {@link #addListener} call.</b>
  551.      * @param {Object} scope If a scope (<b><code>this</code></b> reference) was specified when the listener was added,
  552.      * then this must refer to the same object.
  553.      * @return {Ext.Element} this
  554.      */
  555.     removeListener : function(eventName, fn, scope){
  556.         Ext.EventManager.removeListener(this.dom,  eventName, fn, scope || this);
  557.         return this;
  558.     },
  559.     /**
  560.      * Removes all previous added listeners from this element
  561.      * @return {Ext.Element} this
  562.      */
  563.     removeAllListeners : function(){
  564.         Ext.EventManager.removeAll(this.dom);
  565.         return this;
  566.     },
  567.     /**
  568.      * Recursively removes all previous added listeners from this element and its children
  569.      * @return {Ext.Element} this
  570.      */
  571.     purgeAllListeners : function() {
  572.         Ext.EventManager.purgeElement(this, true);
  573.         return this;
  574.     },
  575.     /**
  576.      * @private Test if size has a unit, otherwise appends the default
  577.      */
  578.     addUnits : function(size){
  579.         if(size === "" || size == "auto" || size === undefined){
  580.             size = size || '';
  581.         } else if(!isNaN(size) || !unitPattern.test(size)){
  582.             size = size + (this.defaultUnit || 'px');
  583.         }
  584.         return size;
  585.     },
  586.     /**
  587.      * <p>Updates the <a href="http://developer.mozilla.org/en/DOM/element.innerHTML">innerHTML</a> of this Element
  588.      * from a specified URL. Note that this is subject to the <a href="http://en.wikipedia.org/wiki/Same_origin_policy">Same Origin Policy</a></p>
  589.      * <p>Updating innerHTML of an element will <b>not</b> execute embedded <tt>&lt;script></tt> elements. This is a browser restriction.</p>
  590.      * @param {Mixed} options. Either a sring containing the URL from which to load the HTML, or an {@link Ext.Ajax#request} options object specifying
  591.      * exactly how to request the HTML.
  592.      * @return {Ext.Element} this
  593.      */
  594.     load : function(url, params, cb){
  595.         Ext.Ajax.request(Ext.apply({
  596.             params: params,
  597.             url: url.url || url,
  598.             callback: cb,
  599.             el: this.dom,
  600.             indicatorText: url.indicatorText || ''
  601.         }, Ext.isObject(url) ? url : {}));
  602.         return this;
  603.     },
  604.     /**
  605.      * Tests various css rules/browsers to determine if this element uses a border box
  606.      * @return {Boolean}
  607.      */
  608.     isBorderBox : function(){
  609.         return noBoxAdjust[(this.dom.tagName || "").toLowerCase()] || Ext.isBorderBox;
  610.     },
  611.     /**
  612.      * <p>Removes this element's dom reference.  Note that event and cache removal is handled at {@link Ext#removeNode}</p>
  613.      */
  614.     remove : function(){
  615.         var me = this,
  616.             dom = me.dom;
  617.         if (dom) {
  618.             delete me.dom;
  619.             Ext.removeNode(dom);
  620.         }
  621.     },
  622.     /**
  623.      * Sets up event handlers to call the passed functions when the mouse is moved into and out of the Element.
  624.      * @param {Function} overFn The function to call when the mouse enters the Element.
  625.      * @param {Function} outFn The function to call when the mouse leaves the Element.
  626.      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the functions are executed. Defaults to the Element's DOM element.
  627.      * @param {Object} options (optional) Options for the listener. See {@link Ext.util.Observable#addListener the <tt>options</tt> parameter}.
  628.      * @return {Ext.Element} this
  629.      */
  630.     hover : function(overFn, outFn, scope, options){
  631.         var me = this;
  632.         me.on('mouseenter', overFn, scope || me.dom, options);
  633.         me.on('mouseleave', outFn, scope || me.dom, options);
  634.         return me;
  635.     },
  636.     /**
  637.      * Returns true if this element is an ancestor of the passed element
  638.      * @param {HTMLElement/String} el The element to check
  639.      * @return {Boolean} True if this element is an ancestor of el, else false
  640.      */
  641.     contains : function(el){
  642.         return !el ? false : Ext.lib.Dom.isAncestor(this.dom, el.dom ? el.dom : el);
  643.     },
  644.     /**
  645.      * Returns the value of a namespaced attribute from the element's underlying DOM node.
  646.      * @param {String} namespace The namespace in which to look for the attribute
  647.      * @param {String} name The attribute name
  648.      * @return {String} The attribute value
  649.      * @deprecated
  650.      */
  651.     getAttributeNS : function(ns, name){
  652.         return this.getAttribute(name, ns);
  653.     },
  654.     /**
  655.      * Returns the value of an attribute from the element's underlying DOM node.
  656.      * @param {String} name The attribute name
  657.      * @param {String} namespace (optional) The namespace in which to look for the attribute
  658.      * @return {String} The attribute value
  659.      */
  660.     getAttribute : Ext.isIE ? function(name, ns){
  661.         var d = this.dom,
  662.             type = typeof d[ns + ":" + name];
  663.         if(['undefined', 'unknown'].indexOf(type) == -1){
  664.             return d[ns + ":" + name];
  665.         }
  666.         return d[name];
  667.     } : function(name, ns){
  668.         var d = this.dom;
  669.         return d.getAttributeNS(ns, name) || d.getAttribute(ns + ":" + name) || d.getAttribute(name) || d[name];
  670.     },
  671.     /**
  672.     * Update the innerHTML of this element
  673.     * @param {String} html The new HTML
  674.     * @return {Ext.Element} this
  675.      */
  676.     update : function(html) {
  677.         if (this.dom) {
  678.             this.dom.innerHTML = html;
  679.         }
  680.         return this;
  681.     }
  682. };
  683. var ep = El.prototype;
  684. El.addMethods = function(o){
  685.    Ext.apply(ep, o);
  686. };
  687. /**
  688.  * Appends an event handler (shorthand for {@link #addListener}).
  689.  * @param {String} eventName The name of event to handle.
  690.  * @param {Function} fn The handler function the event invokes.
  691.  * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the handler function is executed.
  692.  * @param {Object} options (optional) An object containing standard {@link #addListener} options
  693.  * @member Ext.Element
  694.  * @method on
  695.  */
  696. ep.on = ep.addListener;
  697. /**
  698.  * Removes an event handler from this element (see {@link #removeListener} for additional notes).
  699.  * @param {String} eventName The name of the event from which to remove the handler.
  700.  * @param {Function} fn The handler function to remove. <b>This must be a reference to the function passed into the {@link #addListener} call.</b>
  701.  * @param {Object} scope If a scope (<b><code>this</code></b> reference) was specified when the listener was added,
  702.  * then this must refer to the same object.
  703.  * @return {Ext.Element} this
  704.  * @member Ext.Element
  705.  * @method un
  706.  */
  707. ep.un = ep.removeListener;
  708. /**
  709.  * true to automatically adjust width and height settings for box-model issues (default to true)
  710.  */
  711. ep.autoBoxAdjust = true;
  712. // private
  713. var unitPattern = /d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i,
  714.     docEl;
  715. /**
  716.  * @private
  717.  */
  718. /**
  719.  * Retrieves Ext.Element objects.
  720.  * <p><b>This method does not retrieve {@link Ext.Component Component}s.</b> This method
  721.  * retrieves Ext.Element objects which encapsulate DOM elements. To retrieve a Component by
  722.  * its ID, use {@link Ext.ComponentMgr#get}.</p>
  723.  * <p>Uses simple caching to consistently return the same object. Automatically fixes if an
  724.  * object was recreated with the same id via AJAX or DOM.</p>
  725.  * @param {Mixed} el The id of the node, a DOM Node or an existing Element.
  726.  * @return {Element} The Element object (or null if no matching element was found)
  727.  * @static
  728.  * @member Ext.Element
  729.  * @method get
  730.  */
  731. El.get = function(el){
  732.     var ex,
  733.         elm,
  734.         id;
  735.     if(!el){ return null; }
  736.     if (typeof el == "string") { // element id
  737.         if (!(elm = DOC.getElementById(el))) {
  738.             return null;
  739.         }
  740.         if (EC[el] && EC[el].el) {
  741.             ex = EC[el].el;
  742.             ex.dom = elm;
  743.         } else {
  744.             ex = El.addToCache(new El(elm));
  745.         }
  746.         return ex;
  747.     } else if (el.tagName) { // dom element
  748.         if(!(id = el.id)){
  749.             id = Ext.id(el);
  750.         }
  751.         if (EC[id] && EC[id].el) {
  752.             ex = EC[id].el;
  753.             ex.dom = el;
  754.         } else {
  755.             ex = El.addToCache(new El(el));
  756.         }
  757.         return ex;
  758.     } else if (el instanceof El) {
  759.         if(el != docEl){
  760.             el.dom = DOC.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
  761.                                                           // catch case where it hasn't been appended
  762.         }
  763.         return el;
  764.     } else if(el.isComposite) {
  765.         return el;
  766.     } else if(Ext.isArray(el)) {
  767.         return El.select(el);
  768.     } else if(el == DOC) {
  769.         // create a bogus element object representing the document object
  770.         if(!docEl){
  771.             var f = function(){};
  772.             f.prototype = El.prototype;
  773.             docEl = new f();
  774.             docEl.dom = DOC;
  775.         }
  776.         return docEl;
  777.     }
  778.     return null;
  779. };
  780. El.addToCache = function(el, id){
  781.     id = id || el.id;    
  782.     EC[id] = {
  783.         el:  el,
  784.         data: {},
  785.         events: {}
  786.     };
  787.     return el;
  788. };
  789. // private method for getting and setting element data
  790. El.data = function(el, key, value){
  791.     el = El.get(el);
  792.     if (!el) {
  793.         return null;
  794.     }
  795.     var c = EC[el.id].data;
  796.     if(arguments.length == 2){
  797.         return c[key];
  798.     }else{
  799.         return (c[key] = value);
  800.     }
  801. };
  802. // private
  803. // Garbage collection - uncache elements/purge listeners on orphaned elements
  804. // so we don't hold a reference and cause the browser to retain them
  805. function garbageCollect(){
  806.     if(!Ext.enableGarbageCollector){
  807.         clearInterval(El.collectorThreadId);
  808.     } else {
  809.         var eid,
  810.             el,
  811.             d,
  812.             o;
  813.         for(eid in EC){
  814.             o = EC[eid];
  815.             if(o.skipGC){
  816.                 continue;
  817.             }
  818.             el = o.el;
  819.             d = el.dom;
  820.             // -------------------------------------------------------
  821.             // Determining what is garbage:
  822.             // -------------------------------------------------------
  823.             // !d
  824.             // dom node is null, definitely garbage
  825.             // -------------------------------------------------------
  826.             // !d.parentNode
  827.             // no parentNode == direct orphan, definitely garbage
  828.             // -------------------------------------------------------
  829.             // !d.offsetParent && !document.getElementById(eid)
  830.             // display none elements have no offsetParent so we will
  831.             // also try to look it up by it's id. However, check
  832.             // offsetParent first so we don't do unneeded lookups.
  833.             // This enables collection of elements that are not orphans
  834.             // directly, but somewhere up the line they have an orphan
  835.             // parent.
  836.             // -------------------------------------------------------
  837.             if(!d || !d.parentNode || (!d.offsetParent && !DOC.getElementById(eid))){
  838.                 if(Ext.enableListenerCollection){
  839.                     Ext.EventManager.removeAll(d);
  840.                 }
  841.                 delete EC[eid];
  842.             }
  843.         }
  844.         // Cleanup IE Object leaks
  845.         if (Ext.isIE) {
  846.             var t = {};
  847.             for (eid in EC) {
  848.                 t[eid] = EC[eid];
  849.             }
  850.             EC = Ext.elCache = t;
  851.         }
  852.     }
  853. }
  854. El.collectorThreadId = setInterval(garbageCollect, 30000);
  855. var flyFn = function(){};
  856. flyFn.prototype = El.prototype;
  857. // dom is optional
  858. El.Flyweight = function(dom){
  859.     this.dom = dom;
  860. };
  861. El.Flyweight.prototype = new flyFn();
  862. El.Flyweight.prototype.isFlyweight = true;
  863. El._flyweights = {};
  864. /**
  865.  * <p>Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
  866.  * the dom node can be overwritten by other code. Shorthand of {@link Ext.Element#fly}</p>
  867.  * <p>Use this to make one-time references to DOM elements which are not going to be accessed again either by
  868.  * application code, or by Ext's classes. If accessing an element which will be processed regularly, then {@link Ext#get}
  869.  * will be more appropriate to take advantage of the caching provided by the Ext.Element class.</p>
  870.  * @param {String/HTMLElement} el The dom node or id
  871.  * @param {String} named (optional) Allows for creation of named reusable flyweights to prevent conflicts
  872.  * (e.g. internally Ext uses "_global")
  873.  * @return {Element} The shared Element object (or null if no matching element was found)
  874.  * @member Ext.Element
  875.  * @method fly
  876.  */
  877. El.fly = function(el, named){
  878.     var ret = null;
  879.     named = named || '_global';
  880.     if (el = Ext.getDom(el)) {
  881.         (El._flyweights[named] = El._flyweights[named] || new El.Flyweight()).dom = el;
  882.         ret = El._flyweights[named];
  883.     }
  884.     return ret;
  885. };
  886. /**
  887.  * Retrieves Ext.Element objects.
  888.  * <p><b>This method does not retrieve {@link Ext.Component Component}s.</b> This method
  889.  * retrieves Ext.Element objects which encapsulate DOM elements. To retrieve a Component by
  890.  * its ID, use {@link Ext.ComponentMgr#get}.</p>
  891.  * <p>Uses simple caching to consistently return the same object. Automatically fixes if an
  892.  * object was recreated with the same id via AJAX or DOM.</p>
  893.  * Shorthand of {@link Ext.Element#get}
  894.  * @param {Mixed} el The id of the node, a DOM Node or an existing Element.
  895.  * @return {Element} The Element object (or null if no matching element was found)
  896.  * @member Ext
  897.  * @method get
  898.  */
  899. Ext.get = El.get;
  900. /**
  901.  * <p>Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
  902.  * the dom node can be overwritten by other code. Shorthand of {@link Ext.Element#fly}</p>
  903.  * <p>Use this to make one-time references to DOM elements which are not going to be accessed again either by
  904.  * application code, or by Ext's classes. If accessing an element which will be processed regularly, then {@link Ext#get}
  905.  * will be more appropriate to take advantage of the caching provided by the Ext.Element class.</p>
  906.  * @param {String/HTMLElement} el The dom node or id
  907.  * @param {String} named (optional) Allows for creation of named reusable flyweights to prevent conflicts
  908.  * (e.g. internally Ext uses "_global")
  909.  * @return {Element} The shared Element object (or null if no matching element was found)
  910.  * @member Ext
  911.  * @method fly
  912.  */
  913. Ext.fly = El.fly;
  914. // speedy lookup for elements never to box adjust
  915. var noBoxAdjust = Ext.isStrict ? {
  916.     select:1
  917. } : {
  918.     input:1, select:1, textarea:1
  919. };
  920. if(Ext.isIE || Ext.isGecko){
  921.     noBoxAdjust['button'] = 1;
  922. }
  923. Ext.EventManager.on(window, 'unload', function(){
  924.     delete EC;
  925.     delete El._flyweights;
  926. });
  927. })();