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

中间件编程

开发平台:

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.  */
  4. Ext.Element.addMethods({    
  5.     /**
  6.      * Stops the specified event(s) from bubbling and optionally prevents the default action
  7.      * @param {String/Array} eventName an event / array of events to stop from bubbling
  8.      * @param {Boolean} preventDefault (optional) true to prevent the default action too
  9.      * @return {Ext.Element} this
  10.      */
  11.     swallowEvent : function(eventName, preventDefault){
  12.     var me = this;
  13.         function fn(e){
  14.             e.stopPropagation();
  15.             if(preventDefault){
  16.                 e.preventDefault();
  17.             }
  18.         }
  19.         if(Ext.isArray(eventName)){            
  20.         Ext.each(eventName, function(e) {
  21.                  me.on(e, fn);
  22.             });
  23.             return me;
  24.         }
  25.         me.on(eventName, fn);
  26.         return me;
  27.     },
  28.     
  29.     /**
  30.      * Create an event handler on this element such that when the event fires and is handled by this element,
  31.      * it will be relayed to another object (i.e., fired again as if it originated from that object instead).
  32.      * @param {String} eventName The type of event to relay
  33.      * @param {Object} object Any object that extends {@link Ext.util.Observable} that will provide the context
  34.      * for firing the relayed event
  35.      */
  36.     relayEvent : function(eventName, observable){
  37.         this.on(eventName, function(e){
  38.             observable.fireEvent(eventName, e);
  39.         });
  40.     },
  41.     
  42. /**
  43.      * Removes worthless text nodes
  44.      * @param {Boolean} forceReclean (optional) By default the element
  45.      * keeps track if it has been cleaned already so
  46.      * you can call this over and over. However, if you update the element and
  47.      * need to force a reclean, you can pass true.
  48.      */
  49.     clean : function(forceReclean){
  50.         var me = this, 
  51.             dom = me.dom,
  52.          n = dom.firstChild, 
  53.          ni = -1;
  54.         
  55.     if(Ext.Element.data(dom, 'isCleaned') && forceReclean !== true){
  56.             return me;
  57.         }      
  58.         
  59.       while(n){
  60.           var nx = n.nextSibling;
  61.             if(n.nodeType == 3 && !/S/.test(n.nodeValue)){
  62.                 dom.removeChild(n);
  63.             }else{
  64.                 n.nodeIndex = ++ni;
  65.             }
  66.           n = nx;
  67.       }
  68.         Ext.Element.data(dom, 'isCleaned', true);
  69.       return me;
  70.   },
  71.     
  72.     /**
  73.      * Direct access to the Updater {@link Ext.Updater#update} method. The method takes the same object
  74.      * parameter as {@link Ext.Updater#update}
  75.      * @return {Ext.Element} this
  76.      */
  77.     load : function(){
  78.         var um = this.getUpdater();
  79.         um.update.apply(um, arguments);
  80.         return this;
  81.     },
  82.     /**
  83.     * Gets this element's {@link Ext.Updater Updater}
  84.     * @return {Ext.Updater} The Updater
  85.     */
  86.     getUpdater : function(){
  87.         return this.updateManager || (this.updateManager = new Ext.Updater(this));
  88.     },
  89.     
  90. /**
  91.     * Update the innerHTML of this element, optionally searching for and processing scripts
  92.     * @param {String} html The new HTML
  93.     * @param {Boolean} loadScripts (optional) True to look for and process scripts (defaults to false)
  94.     * @param {Function} callback (optional) For async script loading you can be notified when the update completes
  95.     * @return {Ext.Element} this
  96.      */
  97.     update : function(html, loadScripts, callback){
  98.         html = html || "";
  99.     
  100.         if(loadScripts !== true){
  101.             this.dom.innerHTML = html;
  102.             if(Ext.isFunction(callback)){
  103.                 callback();
  104.             }
  105.             return this;
  106.         }
  107.         
  108.         var id = Ext.id(),
  109.          dom = this.dom;
  110.         html += '<span id="' + id + '"></span>';
  111.         Ext.lib.Event.onAvailable(id, function(){
  112.             var DOC = document,
  113.                 hd = DOC.getElementsByTagName("head")[0],
  114.              re = /(?:<script([^>]*)?>)((n|r|.)*?)(?:</script>)/ig,
  115.              srcRe = /ssrc=(['"])(.*?)1/i,
  116.              typeRe = /stype=(['"])(.*?)1/i,
  117.              match,
  118.              attrs,
  119.              srcMatch,
  120.              typeMatch,
  121.              el,
  122.              s;
  123.             while((match = re.exec(html))){
  124.                 attrs = match[1];
  125.                 srcMatch = attrs ? attrs.match(srcRe) : false;
  126.                 if(srcMatch && srcMatch[2]){
  127.                    s = DOC.createElement("script");
  128.                    s.src = srcMatch[2];
  129.                    typeMatch = attrs.match(typeRe);
  130.                    if(typeMatch && typeMatch[2]){
  131.                        s.type = typeMatch[2];
  132.                    }
  133.                    hd.appendChild(s);
  134.                 }else if(match[2] && match[2].length > 0){
  135.                     if(window.execScript) {
  136.                        window.execScript(match[2]);
  137.                     } else {
  138.                        window.eval(match[2]);
  139.                     }
  140.                 }
  141.             }
  142.             el = DOC.getElementById(id);
  143.             if(el){Ext.removeNode(el);}
  144.             if(Ext.isFunction(callback)){
  145.                 callback();
  146.             }
  147.         });
  148.         dom.innerHTML = html.replace(/(?:<script.*?>)((n|r|.)*?)(?:</script>)/ig, "");
  149.         return this;
  150.     },
  151.     
  152.     /**
  153.      * Creates a proxy element of this element
  154.      * @param {String/Object} config The class name of the proxy element or a DomHelper config object
  155.      * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
  156.      * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
  157.      * @return {Ext.Element} The new proxy element
  158.      */
  159.     createProxy : function(config, renderTo, matchBox){
  160.         config = Ext.isObject(config) ? config : {tag : "div", cls: config};
  161.         var me = this,
  162.          proxy = renderTo ? Ext.DomHelper.append(renderTo, config, true) :
  163.             Ext.DomHelper.insertBefore(me.dom, config, true);        
  164.         
  165.         if(matchBox && me.setBox && me.getBox){ // check to make sure Element.position.js is loaded
  166.            proxy.setBox(me.getBox());
  167.         }
  168.         return proxy;
  169.     }
  170. });
  171. Ext.Element.prototype.getUpdateManager = Ext.Element.prototype.getUpdater;
  172. // private
  173. Ext.Element.uncache = function(el){
  174.     for(var i = 0, a = arguments, len = a.length; i < len; i++) {
  175.         if(a[i]){
  176.             delete Ext.Element.cache[a[i].id || a[i]];
  177.         }
  178.     }
  179. };