Element.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:39k
源码类别:

中间件编程

开发平台:

JavaScript

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