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

JavaScript

开发平台:

JavaScript

  1.  * @class Ext.Fx
  2.  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
  3.  * to the {@link Ext.Element} interface when included, so all effects calls should be performed via {@link Ext.Element}.
  4.  * Conversely, since the effects are not actually defined in {@link Ext.Element}, Ext.Fx <b>must</b> be
  5.  * {@link Ext#enableFx included} in order for the Element effects to work.</p><br/>
  6.  * 
  7.  * <p><b><u>Method Chaining</u></b></p>
  8.  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
  9.  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
  10.  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
  11.  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
  12.  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
  13.  * expected results and should be done with care.  Also see <tt>{@link #callback}</tt>.</p><br/>
  14.  *
  15.  * <p><b><u>Anchor Options for Motion Effects</u></b></p>
  16.  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
  17.  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
  18. <pre>
  19. Value  Description
  20. -----  -----------------------------
  21. tl     The top left corner
  22. t      The center of the top edge
  23. tr     The top right corner
  24. l      The center of the left edge
  25. r      The center of the right edge
  26. bl     The bottom left corner
  27. b      The center of the bottom edge
  28. br     The bottom right corner
  29. </pre>
  30.  * <b>Note</b>: some Fx methods accept specific custom config parameters.  The options shown in the Config Options
  31.  * section below are common options that can be passed to any Fx method unless otherwise noted.</b>
  32.  * 
  33.  * @cfg {Function} callback A function called when the effect is finished.  Note that effects are queued internally by the
  34.  * Fx class, so a callback is not required to specify another effect -- effects can simply be chained together
  35.  * and called in sequence (see note for <b><u>Method Chaining</u></b> above), for example:<pre><code>
  36.  * el.slideIn().highlight();
  37.  * </code></pre>
  38.  * The callback is intended for any additional code that should run once a particular effect has completed. The Element
  39.  * being operated upon is passed as the first parameter.
  40.  * 
  41.  * @cfg {Object} scope The scope (<code>this</code> reference) in which the <tt>{@link #callback}</tt> function is executed. Defaults to the browser window.
  42.  * 
  43.  * @cfg {String} easing A valid Ext.lib.Easing value for the effect:</p><div class="mdetail-params"><ul>
  44.  * <li><b><tt>backBoth</tt></b></li>
  45.  * <li><b><tt>backIn</tt></b></li>
  46.  * <li><b><tt>backOut</tt></b></li>
  47.  * <li><b><tt>bounceBoth</tt></b></li>
  48.  * <li><b><tt>bounceIn</tt></b></li>
  49.  * <li><b><tt>bounceOut</tt></b></li>
  50.  * <li><b><tt>easeBoth</tt></b></li>
  51.  * <li><b><tt>easeBothStrong</tt></b></li>
  52.  * <li><b><tt>easeIn</tt></b></li>
  53.  * <li><b><tt>easeInStrong</tt></b></li>
  54.  * <li><b><tt>easeNone</tt></b></li>
  55.  * <li><b><tt>easeOut</tt></b></li>
  56.  * <li><b><tt>easeOutStrong</tt></b></li>
  57.  * <li><b><tt>elasticBoth</tt></b></li>
  58.  * <li><b><tt>elasticIn</tt></b></li>
  59.  * <li><b><tt>elasticOut</tt></b></li>
  60.  * </ul></div>
  61.  *
  62.  * @cfg {String} afterCls A css class to apply after the effect
  63.  * @cfg {Number} duration The length of time (in seconds) that the effect should last
  64.  * 
  65.  * @cfg {Number} endOpacity Only applicable for {@link #fadeIn} or {@link #fadeOut}, a number between
  66.  * <tt>0</tt> and <tt>1</tt> inclusive to configure the ending opacity value.
  67.  *  
  68.  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
  69.  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
  70.  * effects that end with the element being visually hidden, ignored otherwise)
  71.  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. <tt>"width:100px"</tt>, or an object
  72.  * in the form <tt>{width:"100px"}</tt>, or a function which returns such a specification that will be applied to the
  73.  * Element after the effect finishes.
  74.  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
  75.  * @cfg {Boolean} concurrent Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they run in sequence
  76.  * @cfg {Boolean} stopFx Whether preceding effects should be stopped and removed before running current effect (only applies to non blocking effects)
  77.  */
  78. Ext.Fx = {
  79.     
  80.     // private - calls the function taking arguments from the argHash based on the key.  Returns the return value of the function.
  81.     //           this is useful for replacing switch statements (for example).
  82.     switchStatements : function(key, fn, argHash){
  83.         return fn.apply(this, argHash[key]);
  84.     },
  85.     
  86.     /**
  87.      * Slides the element into view.  An anchor point can be optionally passed to set the point of
  88.      * origin for the slide effect.  This function automatically handles wrapping the element with
  89.      * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
  90.      * Usage:
  91.      *<pre><code>
  92. // default: slide the element in from the top
  93. el.slideIn();
  94. // custom: slide the element in from the right with a 2-second duration
  95. el.slideIn('r', { duration: 2 });
  96. // common config options shown with default values
  97. el.slideIn('t', {
  98.     easing: 'easeOut',
  99.     duration: .5
  100. });
  101. </code></pre>
  102.      * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
  103.      * @param {Object} options (optional) Object literal with any of the Fx config options
  104.      * @return {Ext.Element} The Element
  105.      */
  106.     slideIn : function(anchor, o){ 
  107.         o = getObject(o);
  108.         var me = this,
  109.             dom = me.dom,
  110.             st = dom.style,
  111.             xy,
  112.             r,
  113.             b,              
  114.             wrap,               
  115.             after,
  116.             st,
  117.             args, 
  118.             pt,
  119.             bw,
  120.             bh;
  121.             
  122.         anchor = anchor || "t";
  123.         me.queueFx(o, function(){            
  124.             xy = fly(dom).getXY();
  125.             // fix display to visibility
  126.             fly(dom).fixDisplay();            
  127.             
  128.             // restore values after effect
  129.             r = fly(dom).getFxRestore();      
  130.             b = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: dom.offsetWidth, height: dom.offsetHeight};
  131.             b.right = b.x + b.width;
  132.             b.bottom = b.y + b.height;
  133.             
  134.             // fixed size for slide
  135.             fly(dom).setWidth(b.width).setHeight(b.height);            
  136.             
  137.             // wrap if needed
  138.             wrap = fly(dom).fxWrap(r.pos, o, HIDDEN);
  139.             
  140.             st.visibility = VISIBLE;
  141.             st.position = ABSOLUTE;
  142.             
  143.             // clear out temp styles after slide and unwrap
  144.             function after(){
  145.                  fly(dom).fxUnwrap(wrap, r.pos, o);
  146.                  st.width = r.width;
  147.                  st.height = r.height;
  148.                  fly(dom).afterFx(o);
  149.             }
  150.             
  151.             // time to calculate the positions        
  152.             pt = {to: [b.x, b.y]}; 
  153.             bw = {to: b.width};
  154.             bh = {to: b.height};
  155.                 
  156.             function argCalc(wrap, style, ww, wh, sXY, sXYval, s1, s2, w, h, p){                    
  157.                 var ret = {};
  158.                 fly(wrap).setWidth(ww).setHeight(wh);
  159.                 if(fly(wrap)[sXY]){
  160.                     fly(wrap)[sXY](sXYval);                  
  161.                 }
  162.                 style[s1] = style[s2] = "0";                    
  163.                 if(w){
  164.                     ret.width = w
  165.                 };
  166.                 if(h){
  167.                     ret.height = h;
  168.                 }
  169.                 if(p){
  170.                     ret.points = p;
  171.                 }
  172.                 return ret;
  173.             };
  174.             args = fly(dom).switchStatements(anchor.toLowerCase(), argCalc, {
  175.                     t  : [wrap, st, b.width, 0, NULL, NULL, LEFT, BOTTOM, NULL, bh, NULL],
  176.                     l  : [wrap, st, 0, b.height, NULL, NULL, RIGHT, TOP, bw, NULL, NULL],
  177.                     r  : [wrap, st, b.width, b.height, SETX, b.right, LEFT, TOP, NULL, NULL, pt],
  178.                     b  : [wrap, st, b.width, b.height, SETY, b.bottom, LEFT, TOP, NULL, bh, pt],
  179.                     tl : [wrap, st, 0, 0, NULL, NULL, RIGHT, BOTTOM, bw, bh, pt],
  180.                     bl : [wrap, st, 0, 0, SETY, b.y + b.height, RIGHT, TOP, bw, bh, pt],
  181.                     br : [wrap, st, 0, 0, SETXY, [b.right, b.bottom], LEFT, TOP, bw, bh, pt],
  182.                     tr : [wrap, st, 0, 0, SETX, b.x + b.width, LEFT, BOTTOM, bw, bh, pt]
  183.                 });
  184.             
  185.             st.visibility = VISIBLE;
  186.             fly(wrap).show();
  187.             arguments.callee.anim = fly(wrap).fxanim(args,
  188.                 o,
  189.                 MOTION,
  190.                 .5,
  191.                 EASEOUT, 
  192.                 after);
  193.         });
  194.         return me;
  195.     },
  196.     
  197.     /**
  198.      * Slides the element out of view.  An anchor point can be optionally passed to set the end point
  199.      * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
  200.      * 'hidden') but block elements will still take up space in the document.  The element must be removed
  201.      * from the DOM using the 'remove' config option if desired.  This function automatically handles 
  202.      * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
  203.      * Usage:
  204.      *<pre><code>
  205. // default: slide the element out to the top
  206. el.slideOut();
  207. // custom: slide the element out to the right with a 2-second duration
  208. el.slideOut('r', { duration: 2 });
  209. // common config options shown with default values
  210. el.slideOut('t', {
  211.     easing: 'easeOut',
  212.     duration: .5,
  213.     remove: false,
  214.     useDisplay: false
  215. });
  216. </code></pre>
  217.      * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
  218.      * @param {Object} options (optional) Object literal with any of the Fx config options
  219.      * @return {Ext.Element} The Element
  220.      */
  221.     slideOut : function(anchor, o){
  222.         o = getObject(o);
  223.         var me = this,
  224.             dom = me.dom,
  225.             st = dom.style,
  226.             xy = me.getXY(),
  227.             wrap,
  228.             r,
  229.             b,
  230.             a,
  231.             zero = {to: 0}; 
  232.                     
  233.         anchor = anchor || "t";
  234.         me.queueFx(o, function(){
  235.             
  236.             // restore values after effect
  237.             r = fly(dom).getFxRestore(); 
  238.             b = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: dom.offsetWidth, height: dom.offsetHeight};
  239.             b.right = b.x + b.width;
  240.             b.bottom = b.y + b.height;
  241.                 
  242.             // fixed size for slide   
  243.             fly(dom).setWidth(b.width).setHeight(b.height);
  244.             // wrap if needed
  245.             wrap = fly(dom).fxWrap(r.pos, o, VISIBLE);
  246.                 
  247.             st.visibility = VISIBLE;
  248.             st.position = ABSOLUTE;
  249.             fly(wrap).setWidth(b.width).setHeight(b.height);            
  250.             function after(){
  251.                 o.useDisplay ? fly(dom).setDisplayed(FALSE) : fly(dom).hide();                
  252.                 fly(dom).fxUnwrap(wrap, r.pos, o);
  253.                 st.width = r.width;
  254.                 st.height = r.height;
  255.                 fly(dom).afterFx(o);
  256.             }            
  257.             
  258.             function argCalc(style, s1, s2, p1, v1, p2, v2, p3, v3){                    
  259.                 var ret = {};
  260.                 
  261.                 style[s1] = style[s2] = "0";
  262.                 ret[p1] = v1;               
  263.                 if(p2){
  264.                     ret[p2] = v2;               
  265.                 }
  266.                 if(p3){
  267.                     ret[p3] = v3;
  268.                 }
  269.                 
  270.                 return ret;
  271.             };
  272.             
  273.             a = fly(dom).switchStatements(anchor.toLowerCase(), argCalc, {
  274.                 t  : [st, LEFT, BOTTOM, HEIGHT, zero],
  275.                 l  : [st, RIGHT, TOP, WIDTH, zero],
  276.                 r  : [st, LEFT, TOP, WIDTH, zero, POINTS, {to : [b.right, b.y]}],
  277.                 b  : [st, LEFT, TOP, HEIGHT, zero, POINTS, {to : [b.x, b.bottom]}],
  278.                 tl : [st, RIGHT, BOTTOM, WIDTH, zero, HEIGHT, zero],
  279.                 bl : [st, RIGHT, TOP, WIDTH, zero, HEIGHT, zero, POINTS, {to : [b.x, b.bottom]}],
  280.                 br : [st, LEFT, TOP, WIDTH, zero, HEIGHT, zero, POINTS, {to : [b.x + b.width, b.bottom]}],
  281.                 tr : [st, LEFT, BOTTOM, WIDTH, zero, HEIGHT, zero, POINTS, {to : [b.right, b.y]}]
  282.             });
  283.             
  284.             arguments.callee.anim = fly(wrap).fxanim(a,
  285.                 o,
  286.                 MOTION,
  287.                 .5,
  288.                 EASEOUT, 
  289.                 after);
  290.         });
  291.         return me;
  292.     },
  293.     /**
  294.      * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
  295.      * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
  296.      * The element must be removed from the DOM using the 'remove' config option if desired.
  297.      * Usage:
  298.      *<pre><code>
  299. // default
  300. el.puff();
  301. // common config options shown with default values
  302. el.puff({
  303.     easing: 'easeOut',
  304.     duration: .5,
  305.     remove: false,
  306.     useDisplay: false
  307. });
  308. </code></pre>
  309.      * @param {Object} options (optional) Object literal with any of the Fx config options
  310.      * @return {Ext.Element} The Element
  311.      */
  312.     puff : function(o){
  313.         o = getObject(o);
  314.         var me = this,
  315.             dom = me.dom,
  316.             st = dom.style,
  317.             width,
  318.             height,
  319.             r;
  320.         me.queueFx(o, function(){
  321.             width = fly(dom).getWidth();
  322.             height = fly(dom).getHeight();
  323.             fly(dom).clearOpacity();
  324.             fly(dom).show();
  325.             // restore values after effect
  326.             r = fly(dom).getFxRestore();                   
  327.             
  328.             function after(){
  329.                 o.useDisplay ? fly(dom).setDisplayed(FALSE) : fly(dom).hide();                  
  330.                 fly(dom).clearOpacity();  
  331.                 fly(dom).setPositioning(r.pos);
  332.                 st.width = r.width;
  333.                 st.height = r.height;
  334.                 st.fontSize = '';
  335.                 fly(dom).afterFx(o);
  336.             }   
  337.             arguments.callee.anim = fly(dom).fxanim({
  338.                     width : {to : fly(dom).adjustWidth(width * 2)},
  339.                     height : {to : fly(dom).adjustHeight(height * 2)},
  340.                     points : {by : [-width * .5, -height * .5]},
  341.                     opacity : {to : 0},
  342.                     fontSize: {to : 200, unit: "%"}
  343.                 },
  344.                 o,
  345.                 MOTION,
  346.                 .5,
  347.                 EASEOUT,
  348.                  after);
  349.         });
  350.         return me;
  351.     },
  352.     /**
  353.      * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
  354.      * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
  355.      * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
  356.      * Usage:
  357.      *<pre><code>
  358. // default
  359. el.switchOff();
  360. // all config options shown with default values
  361. el.switchOff({
  362.     easing: 'easeIn',
  363.     duration: .3,
  364.     remove: false,
  365.     useDisplay: false
  366. });
  367. </code></pre>
  368.      * @param {Object} options (optional) Object literal with any of the Fx config options
  369.      * @return {Ext.Element} The Element
  370.      */
  371.     switchOff : function(o){
  372.         o = getObject(o);
  373.         var me = this,
  374.             dom = me.dom,
  375.             st = dom.style,
  376.             r;
  377.         me.queueFx(o, function(){
  378.             fly(dom).clearOpacity();
  379.             fly(dom).clip();
  380.             // restore values after effect
  381.             r = fly(dom).getFxRestore();
  382.                 
  383.             function after(){
  384.                 o.useDisplay ? fly(dom).setDisplayed(FALSE) : fly(dom).hide();  
  385.                 fly(dom).clearOpacity();
  386.                 fly(dom).setPositioning(r.pos);
  387.                 st.width = r.width;
  388.                 st.height = r.height;   
  389.                 fly(dom).afterFx(o);
  390.             };
  391.             fly(dom).fxanim({opacity : {to : 0.3}}, 
  392.                 NULL, 
  393.                 NULL, 
  394.                 .1, 
  395.                 NULL, 
  396.                 function(){                                 
  397.                     fly(dom).clearOpacity();
  398.                         (function(){                            
  399.                             fly(dom).fxanim({
  400.                                 height : {to : 1},
  401.                                 points : {by : [0, fly(dom).getHeight() * .5]}
  402.                             }, 
  403.                             o, 
  404.                             MOTION, 
  405.                             0.3, 
  406.                             'easeIn', 
  407.                             after);
  408.                         }).defer(100);
  409.                 });
  410.         });
  411.         return me;
  412.     },
  413.     /**
  414.      * Highlights the Element by setting a color (applies to the background-color by default, but can be
  415.      * changed using the "attr" config option) and then fading back to the original color. If no original
  416.      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
  417.      * Usage:
  418. <pre><code>
  419. // default: highlight background to yellow
  420. el.highlight();
  421. // custom: highlight foreground text to blue for 2 seconds
  422. el.highlight("0000ff", { attr: 'color', duration: 2 });
  423. // common config options shown with default values
  424. el.highlight("ffff9c", {
  425.     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
  426.     endColor: (current color) or "ffffff",
  427.     easing: 'easeIn',
  428.     duration: 1
  429. });
  430. </code></pre>
  431.      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
  432.      * @param {Object} options (optional) Object literal with any of the Fx config options
  433.      * @return {Ext.Element} The Element
  434.      */ 
  435.     highlight : function(color, o){
  436.         o = getObject(o);
  437.         var me = this,
  438.             dom = me.dom,
  439.             attr = o.attr || "backgroundColor",
  440.             a = {},
  441.             restore;
  442.         me.queueFx(o, function(){
  443.             fly(dom).clearOpacity();
  444.             fly(dom).show();
  445.             function after(){
  446.                 dom.style[attr] = restore;
  447.                 fly(dom).afterFx(o);
  448.             }            
  449.             restore = dom.style[attr];
  450.             a[attr] = {from: color || "ffff9c", to: o.endColor || fly(dom).getColor(attr) || "ffffff"};
  451.             arguments.callee.anim = fly(dom).fxanim(a,
  452.                 o,
  453.                 'color',
  454.                 1,
  455.                 'easeIn', 
  456.                 after);
  457.         });
  458.         return me;
  459.     },
  460.    /**
  461.     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
  462.     * Usage:
  463. <pre><code>
  464. // default: a single light blue ripple
  465. el.frame();
  466. // custom: 3 red ripples lasting 3 seconds total
  467. el.frame("ff0000", 3, { duration: 3 });
  468. // common config options shown with default values
  469. el.frame("C3DAF9", 1, {
  470.     duration: 1 //duration of each individual ripple.
  471.     // Note: Easing is not configurable and will be ignored if included
  472. });
  473. </code></pre>
  474.     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
  475.     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
  476.     * @param {Object} options (optional) Object literal with any of the Fx config options
  477.     * @return {Ext.Element} The Element
  478.     */
  479.     frame : function(color, count, o){
  480.         o = getObject(o);
  481.         var me = this,
  482.             dom = me.dom,
  483.             proxy,
  484.             active;
  485.         me.queueFx(o, function(){
  486.             color = color || '#C3DAF9';
  487.             if(color.length == 6){
  488.                 color = '#' + color;
  489.             }            
  490.             count = count || 1;
  491.             fly(dom).show();
  492.             var xy = fly(dom).getXY(),
  493.                 b = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: dom.offsetWidth, height: dom.offsetHeight},
  494.                 queue = function(){
  495.                     proxy = fly(document.body || document.documentElement).createChild({
  496.                         style:{
  497.                             position : ABSOLUTE,
  498.                             'z-index': 35000, // yee haw
  499.                             border : '0px solid ' + color
  500.                         }
  501.                     });
  502.                     return proxy.queueFx({}, animFn);
  503.                 };
  504.             
  505.             
  506.             arguments.callee.anim = {
  507.                 isAnimated: true,
  508.                 stop: function() {
  509.                     count = 0;
  510.                     proxy.stopFx();
  511.                 }
  512.             };
  513.             
  514.             function animFn(){
  515.                 var scale = Ext.isBorderBox ? 2 : 1;
  516.                 active = proxy.anim({
  517.                     top : {from : b.y, to : b.y - 20},
  518.                     left : {from : b.x, to : b.x - 20},
  519.                     borderWidth : {from : 0, to : 10},
  520.                     opacity : {from : 1, to : 0},
  521.                     height : {from : b.height, to : b.height + 20 * scale},
  522.                     width : {from : b.width, to : b.width + 20 * scale}
  523.                 },{
  524.                     duration: o.duration || 1,
  525.                     callback: function() {
  526.                         proxy.remove();
  527.                         --count > 0 ? queue() : fly(dom).afterFx(o);
  528.                     }
  529.                 });
  530.                 arguments.callee.anim = {
  531.                     isAnimated: true,
  532.                     stop: function(){
  533.                         active.stop();
  534.                     }
  535.                 };
  536.             };
  537.             queue();
  538.         });
  539.         return me;
  540.     },
  541.    /**
  542.     * Creates a pause before any subsequent queued effects begin.  If there are
  543.     * no effects queued after the pause it will have no effect.
  544.     * Usage:
  545. <pre><code>
  546. el.pause(1);
  547. </code></pre>
  548.     * @param {Number} seconds The length of time to pause (in seconds)
  549.     * @return {Ext.Element} The Element
  550.     */
  551.     pause : function(seconds){        
  552.         var dom = this.dom,
  553.             t;
  554.         this.queueFx({}, function(){
  555.             t = setTimeout(function(){
  556.                 fly(dom).afterFx({});
  557.             }, seconds * 1000);
  558.             arguments.callee.anim = {
  559.                 isAnimated: true,
  560.                 stop: function(){
  561.                     clearTimeout(t);
  562.                     fly(dom).afterFx({});
  563.                 }
  564.             };
  565.         });
  566.         return this;
  567.     },
  568.    /**
  569.     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
  570.     * using the <tt>{@link #endOpacity}</tt> config option.
  571.     * Usage:
  572. <pre><code>
  573. // default: fade in from opacity 0 to 100%
  574. el.fadeIn();
  575. // custom: fade in from opacity 0 to 75% over 2 seconds
  576. el.fadeIn({ endOpacity: .75, duration: 2});
  577. // common config options shown with default values
  578. el.fadeIn({
  579.     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
  580.     easing: 'easeOut',
  581.     duration: .5
  582. });
  583. </code></pre>
  584.     * @param {Object} options (optional) Object literal with any of the Fx config options
  585.     * @return {Ext.Element} The Element
  586.     */
  587.     fadeIn : function(o){
  588.         o = getObject(o);
  589.         var me = this,
  590.             dom = me.dom,
  591.             to = o.endOpacity || 1;
  592.         
  593.         me.queueFx(o, function(){
  594.             fly(dom).setOpacity(0);
  595.             fly(dom).fixDisplay();
  596.             dom.style.visibility = VISIBLE;
  597.             arguments.callee.anim = fly(dom).fxanim({opacity:{to:to}},
  598.                 o, NULL, .5, EASEOUT, function(){
  599.                 if(to == 1){
  600.                     fly(dom).clearOpacity();
  601.                 }
  602.                 fly(dom).afterFx(o);
  603.             });
  604.         });
  605.         return me;
  606.     },
  607.    /**
  608.     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
  609.     * using the <tt>{@link #endOpacity}</tt> config option.  Note that IE may require
  610.     * <tt>{@link #useDisplay}:true</tt> in order to redisplay correctly.
  611.     * Usage:
  612. <pre><code>
  613. // default: fade out from the element's current opacity to 0
  614. el.fadeOut();
  615. // custom: fade out from the element's current opacity to 25% over 2 seconds
  616. el.fadeOut({ endOpacity: .25, duration: 2});
  617. // common config options shown with default values
  618. el.fadeOut({
  619.     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
  620.     easing: 'easeOut',
  621.     duration: .5,
  622.     remove: false,
  623.     useDisplay: false
  624. });
  625. </code></pre>
  626.     * @param {Object} options (optional) Object literal with any of the Fx config options
  627.     * @return {Ext.Element} The Element
  628.     */
  629.     fadeOut : function(o){
  630.         o = getObject(o);
  631.         var me = this,
  632.             dom = me.dom,
  633.             style = dom.style,
  634.             to = o.endOpacity || 0;         
  635.         
  636.         me.queueFx(o, function(){  
  637.             arguments.callee.anim = fly(dom).fxanim({ 
  638.                 opacity : {to : to}},
  639.                 o, 
  640.                 NULL, 
  641.                 .5, 
  642.                 EASEOUT, 
  643.                 function(){
  644.                     if(to == 0){
  645.                         Ext.Element.data(dom, 'visibilityMode') == Ext.Element.DISPLAY || o.useDisplay ? 
  646.                             style.display = "none" :
  647.                             style.visibility = HIDDEN;
  648.                             
  649.                         fly(dom).clearOpacity();
  650.                     }
  651.                     fly(dom).afterFx(o);
  652.             });
  653.         });
  654.         return me;
  655.     },
  656.    /**
  657.     * Animates the transition of an element's dimensions from a starting height/width
  658.     * to an ending height/width.  This method is a convenience implementation of {@link shift}.
  659.     * Usage:
  660. <pre><code>
  661. // change height and width to 100x100 pixels
  662. el.scale(100, 100);
  663. // common config options shown with default values.  The height and width will default to
  664. // the element&#39;s existing values if passed as null.
  665. el.scale(
  666.     [element&#39;s width],
  667.     [element&#39;s height], {
  668.         easing: 'easeOut',
  669.         duration: .35
  670.     }
  671. );
  672. </code></pre>
  673.     * @param {Number} width  The new width (pass undefined to keep the original width)
  674.     * @param {Number} height  The new height (pass undefined to keep the original height)
  675.     * @param {Object} options (optional) Object literal with any of the Fx config options
  676.     * @return {Ext.Element} The Element
  677.     */
  678.     scale : function(w, h, o){
  679.         this.shift(Ext.apply({}, o, {
  680.             width: w,
  681.             height: h
  682.         }));
  683.         return this;
  684.     },
  685.    /**
  686.     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
  687.     * Any of these properties not specified in the config object will not be changed.  This effect 
  688.     * requires that at least one new dimension, position or opacity setting must be passed in on
  689.     * the config object in order for the function to have any effect.
  690.     * Usage:
  691. <pre><code>
  692. // slide the element horizontally to x position 200 while changing the height and opacity
  693. el.shift({ x: 200, height: 50, opacity: .8 });
  694. // common config options shown with default values.
  695. el.shift({
  696.     width: [element&#39;s width],
  697.     height: [element&#39;s height],
  698.     x: [element&#39;s x position],
  699.     y: [element&#39;s y position],
  700.     opacity: [element&#39;s opacity],
  701.     easing: 'easeOut',
  702.     duration: .35
  703. });
  704. </code></pre>
  705.     * @param {Object} options  Object literal with any of the Fx config options
  706.     * @return {Ext.Element} The Element
  707.     */
  708.     shift : function(o){
  709.         o = getObject(o);
  710.         var dom = this.dom,
  711.             a = {};
  712.                 
  713.         this.queueFx(o, function(){
  714.             for (var prop in o) {
  715.                 if (o[prop] != UNDEFINED) {                                                 
  716.                     a[prop] = {to : o[prop]};                   
  717.                 }
  718.             } 
  719.             
  720.             a.width ? a.width.to = fly(dom).adjustWidth(o.width) : a;
  721.             a.height ? a.height.to = fly(dom).adjustWidth(o.height) : a;   
  722.             
  723.             if (a.x || a.y || a.xy) {
  724.                 a.points = a.xy || 
  725.                            {to : [ a.x ? a.x.to : fly(dom).getX(),
  726.                                    a.y ? a.y.to : fly(dom).getY()]};                  
  727.             }
  728.             arguments.callee.anim = fly(dom).fxanim(a,
  729.                 o, 
  730.                 MOTION, 
  731.                 .35, 
  732.                 EASEOUT, 
  733.                 function(){
  734.                     fly(dom).afterFx(o);
  735.                 });
  736.         });
  737.         return this;
  738.     },
  739.     /**
  740.      * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
  741.      * ending point of the effect.
  742.      * Usage:
  743.      *<pre><code>
  744. // default: slide the element downward while fading out
  745. el.ghost();
  746. // custom: slide the element out to the right with a 2-second duration
  747. el.ghost('r', { duration: 2 });
  748. // common config options shown with default values
  749. el.ghost('b', {
  750.     easing: 'easeOut',
  751.     duration: .5,
  752.     remove: false,
  753.     useDisplay: false
  754. });
  755. </code></pre>
  756.      * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
  757.      * @param {Object} options (optional) Object literal with any of the Fx config options
  758.      * @return {Ext.Element} The Element
  759.      */
  760.     ghost : function(anchor, o){
  761.         o = getObject(o);
  762.         var me = this,
  763.             dom = me.dom,
  764.             st = dom.style,
  765.             a = {opacity: {to: 0}, points: {}},
  766.             pt = a.points,
  767.             r,
  768.             w,
  769.             h;
  770.             
  771.         anchor = anchor || "b";
  772.         me.queueFx(o, function(){
  773.             // restore values after effect
  774.             r = fly(dom).getFxRestore();
  775.             w = fly(dom).getWidth();
  776.             h = fly(dom).getHeight();
  777.             
  778.             function after(){
  779.                 o.useDisplay ? fly(dom).setDisplayed(FALSE) : fly(dom).hide();   
  780.                 fly(dom).clearOpacity();
  781.                 fly(dom).setPositioning(r.pos);
  782.                 st.width = r.width;
  783.                 st.height = r.height;
  784.                 fly(dom).afterFx(o);
  785.             }
  786.                 
  787.             pt.by = fly(dom).switchStatements(anchor.toLowerCase(), function(v1,v2){ return [v1, v2];}, {
  788.                t  : [0, -h],
  789.                l  : [-w, 0],
  790.                r  : [w, 0],
  791.                b  : [0, h],
  792.                tl : [-w, -h],
  793.                bl : [-w, h],
  794.                br : [w, h],
  795.                tr : [w, -h] 
  796.             });
  797.                 
  798.             arguments.callee.anim = fly(dom).fxanim(a,
  799.                 o,
  800.                 MOTION,
  801.                 .5,
  802.                 EASEOUT, after);
  803.         });
  804.         return me;
  805.     },
  806.     /**
  807.      * Ensures that all effects queued after syncFx is called on the element are
  808.      * run concurrently.  This is the opposite of {@link #sequenceFx}.
  809.      * @return {Ext.Element} The Element
  810.      */
  811.     syncFx : function(){
  812.         var me = this;
  813.         me.fxDefaults = Ext.apply(me.fxDefaults || {}, {
  814.             block : FALSE,
  815.             concurrent : TRUE,
  816.             stopFx : FALSE
  817.         });
  818.         return me;
  819.     },
  820.     /**
  821.      * Ensures that all effects queued after sequenceFx is called on the element are
  822.      * run in sequence.  This is the opposite of {@link #syncFx}.
  823.      * @return {Ext.Element} The Element
  824.      */
  825.     sequenceFx : function(){
  826.         var me = this;
  827.         me.fxDefaults = Ext.apply(me.fxDefaults || {}, {
  828.             block : FALSE,
  829.             concurrent : FALSE,
  830.             stopFx : FALSE
  831.         });
  832.         return me;
  833.     },
  834.     /* @private */
  835.     nextFx : function(){        
  836.         var ef = getQueue(this.dom.id)[0];
  837.         if(ef){
  838.             ef.call(this);
  839.         }
  840.     },
  841.     /**
  842.      * Returns true if the element has any effects actively running or queued, else returns false.
  843.      * @return {Boolean} True if element has active effects, else false
  844.      */
  845.     hasActiveFx : function(){
  846.         return getQueue(this.dom.id)[0];
  847.     },
  848.     /**
  849.      * Stops any running effects and clears the element's internal effects queue if it contains
  850.      * any additional effects that haven't started yet.
  851.      * @return {Ext.Element} The Element
  852.      */
  853.     stopFx : function(finish){
  854.         var me = this,
  855.             id = me.dom.id;
  856.         if(me.hasActiveFx()){
  857.             var cur = getQueue(id)[0];
  858.             if(cur && cur.anim){
  859.                 if(cur.anim.isAnimated){
  860.                     setQueue(id, [cur]); //clear
  861.                     cur.anim.stop(finish !== undefined ? finish : TRUE);
  862.                 }else{
  863.                     setQueue(id, []);
  864.                 }
  865.             }
  866.         }
  867.         return me;
  868.     },
  869.     /* @private */
  870.     beforeFx : function(o){
  871.         if(this.hasActiveFx() && !o.concurrent){
  872.            if(o.stopFx){
  873.                this.stopFx();
  874.                return TRUE;
  875.            }
  876.            return FALSE;
  877.         }
  878.         return TRUE;
  879.     },
  880.     /**
  881.      * Returns true if the element is currently blocking so that no other effect can be queued
  882.      * until this effect is finished, else returns false if blocking is not set.  This is commonly
  883.      * used to ensure that an effect initiated by a user action runs to completion prior to the
  884.      * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
  885.      * @return {Boolean} True if blocking, else false
  886.      */
  887.     hasFxBlock : function(){
  888.         var q = getQueue(this.dom.id);
  889.         return q && q[0] && q[0].block;
  890.     },
  891.     /* @private */
  892.     queueFx : function(o, fn){
  893.         var me = fly(this.dom);
  894.         if(!me.hasFxBlock()){
  895.             Ext.applyIf(o, me.fxDefaults);
  896.             if(!o.concurrent){
  897.                 var run = me.beforeFx(o);
  898.                 fn.block = o.block;
  899.                 getQueue(me.dom.id).push(fn);
  900.                 if(run){
  901.                     me.nextFx();
  902.                 }
  903.             }else{
  904.                 fn.call(me);
  905.             }
  906.         }
  907.         return me;
  908.     },
  909.     /* @private */
  910.     fxWrap : function(pos, o, vis){ 
  911.         var dom = this.dom,
  912.             wrap,
  913.             wrapXY;
  914.         if(!o.wrap || !(wrap = Ext.getDom(o.wrap))){            
  915.             if(o.fixPosition){
  916.                 wrapXY = fly(dom).getXY();
  917.             }
  918.             var div = document.createElement("div");
  919.             div.style.visibility = vis;
  920.             wrap = dom.parentNode.insertBefore(div, dom);
  921.             fly(wrap).setPositioning(pos);
  922.             if(fly(wrap).isStyle(POSITION, "static")){
  923.                 fly(wrap).position("relative");
  924.             }
  925.             fly(dom).clearPositioning('auto');
  926.             fly(wrap).clip();
  927.             wrap.appendChild(dom);
  928.             if(wrapXY){
  929.                 fly(wrap).setXY(wrapXY);
  930.             }
  931.         }
  932.         return wrap;
  933.     },
  934.     /* @private */
  935.     fxUnwrap : function(wrap, pos, o){      
  936.         var dom = this.dom;
  937.         fly(dom).clearPositioning();
  938.         fly(dom).setPositioning(pos);
  939.         if(!o.wrap){
  940.             var pn = fly(wrap).dom.parentNode;             pn.insertBefore(dom, wrap); 
  941.             fly(wrap).remove();
  942.         }
  943.     },
  944.     /* @private */
  945.     getFxRestore : function(){
  946.         var st = this.dom.style;
  947.         return {pos: this.getPositioning(), width: st.width, height : st.height};
  948.     },
  949.     /* @private */
  950.     afterFx : function(o){
  951.         var dom = this.dom,
  952.             id = dom.id;
  953.         if(o.afterStyle){
  954.             fly(dom).setStyle(o.afterStyle);            
  955.         }
  956.         if(o.afterCls){
  957.             fly(dom).addClass(o.afterCls);
  958.         }
  959.         if(o.remove == TRUE){
  960.             fly(dom).remove();
  961.         }
  962.         if(o.callback){
  963.             o.callback.call(o.scope, fly(dom));
  964.         }
  965.         if(!o.concurrent){
  966.             getQueue(id).shift();
  967.             fly(dom).nextFx();
  968.         }
  969.     },
  970.     /* @private */
  971.     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
  972.         animType = animType || 'run';
  973.         opt = opt || {};
  974.         var anim = Ext.lib.Anim[animType](
  975.                 this.dom, 
  976.                 args,
  977.                 (opt.duration || defaultDur) || .35,
  978.                 (opt.easing || defaultEase) || EASEOUT,
  979.                 cb,            
  980.                 this
  981.             );
  982.         opt.anim = anim;
  983.         return anim;
  984.     }
  985. };
  986. // backwards compat
  987. Ext.Fx.resize = Ext.Fx.scale;
  988. //When included, Ext.Fx is automatically applied to Element so that all basic
  989. //effects are available directly via the Element API
  990. Ext.Element.addMethods(Ext.Fx);
  991. })(); /**
  992.  * @class Ext.CompositeElementLite
  993.  * <p>This class encapsulates a <i>collection</i> of DOM elements, providing methods to filter
  994.  * members, or to perform collective actions upon the whole set.</p>
  995.  * <p>Although they are not listed, this class supports all of the methods of {@link Ext.Element} and
  996.  * {@link Ext.Fx}. The methods from these classes will be performed on all the elements in this collection.</p>
  997.  * Example:<pre><code>
  998. var els = Ext.select("#some-el div.some-class");
  999. // or select directly from an existing element
  1000. var el = Ext.get('some-el');
  1001. el.select('div.some-class');
  1002. els.setWidth(100); // all elements become 100 width
  1003. els.hide(true); // all elements fade out and hide
  1004. // or
  1005. els.setWidth(100).hide(true);
  1006. </code>
  1007.  */
  1008. Ext.CompositeElementLite = function(els, root){
  1009.     /**
  1010.      * <p>The Array of DOM elements which this CompositeElement encapsulates. Read-only.</p>
  1011.      * <p>This will not <i>usually</i> be accessed in developers' code, but developers wishing
  1012.      * to augment the capabilities of the CompositeElementLite class may use it when adding
  1013.      * methods to the class.</p>
  1014.      * <p>For example to add the <code>nextAll</code> method to the class to <b>add</b> all
  1015.      * following siblings of selected elements, the code would be</p><code><pre>
  1016. Ext.override(Ext.CompositeElementLite, {
  1017.     nextAll: function() {
  1018.         var els = this.elements, i, l = els.length, n, r = [], ri = -1;
  1019. //      Loop through all elements in this Composite, accumulating
  1020. //      an Array of all siblings.
  1021.         for (i = 0; i < l; i++) {
  1022.             for (n = els[i].nextSibling; n; n = n.nextSibling) {
  1023.                 r[++ri] = n;
  1024.             }
  1025.         }
  1026. //      Add all found siblings to this Composite
  1027.         return this.add(r);
  1028.     }
  1029. });</pre></code>
  1030.      * @type Array
  1031.      * @property elements
  1032.      */
  1033.     this.elements = [];
  1034.     this.add(els, root);
  1035.     this.el = new Ext.Element.Flyweight();
  1036. };
  1037. Ext.CompositeElementLite.prototype = {
  1038.     isComposite: true,    
  1039.     
  1040.     // private
  1041.     getElement : function(el){
  1042.         // Set the shared flyweight dom property to the current element
  1043.         var e = this.el;
  1044.         e.dom = el;
  1045.         e.id = el.id;
  1046.         return e;
  1047.     },
  1048.     
  1049.     // private
  1050.     transformElement : function(el){
  1051.         return Ext.getDom(el);
  1052.     },
  1053.     
  1054.     /**
  1055.      * Returns the number of elements in this Composite.
  1056.      * @return Number
  1057.      */
  1058.     getCount : function(){
  1059.         return this.elements.length;
  1060.     },    
  1061.     /**
  1062.      * Adds elements to this Composite object.
  1063.      * @param {Mixed} els Either an Array of DOM elements to add, or another Composite object who's elements should be added.
  1064.      * @return {CompositeElement} This Composite object.
  1065.      */
  1066.     add : function(els, root){
  1067.         var me = this,
  1068.             elements = me.elements;
  1069.         if(!els){
  1070.             return this;
  1071.         }
  1072.         if(Ext.isString(els)){
  1073.             els = Ext.Element.selectorFunction(els, root);
  1074.         }else if(els.isComposite){
  1075.             els = els.elements;
  1076.         }else if(!Ext.isIterable(els)){
  1077.             els = [els];
  1078.         }
  1079.         
  1080.         for(var i = 0, len = els.length; i < len; ++i){
  1081.             elements.push(me.transformElement(els[i]));
  1082.         }
  1083.         return me;
  1084.     },
  1085.     
  1086.     invoke : function(fn, args){
  1087.         var me = this,
  1088.             els = me.elements,
  1089.             len = els.length, 
  1090.             e;
  1091.             
  1092.         for(i = 0; i<len; i++) {
  1093.             e = els[i];
  1094.             if(e){
  1095.                 Ext.Element.prototype[fn].apply(me.getElement(e), args);
  1096.             }
  1097.         }
  1098.         return me;
  1099.     },
  1100.     /**
  1101.      * Returns a flyweight Element of the dom element object at the specified index
  1102.      * @param {Number} index
  1103.      * @return {Ext.Element}
  1104.      */
  1105.     item : function(index){
  1106.         var me = this,
  1107.             el = me.elements[index],
  1108.             out = null;
  1109.         if(el){
  1110.             out = me.getElement(el);
  1111.         }
  1112.         return out;
  1113.     },
  1114.     // fixes scope with flyweight
  1115.     addListener : function(eventName, handler, scope, opt){
  1116.         var els = this.elements,
  1117.             len = els.length,
  1118.             i, e;
  1119.         
  1120.         for(i = 0; i<len; i++) {
  1121.             e = els[i];
  1122.             if(e) {
  1123.                 Ext.EventManager.on(e, eventName, handler, scope || e, opt);
  1124.             }
  1125.         }
  1126.         return this;
  1127.     },
  1128.     /**
  1129.      * <p>Calls the passed function for each element in this composite.</p>
  1130.      * @param {Function} fn The function to call. The function is passed the following parameters:<ul>
  1131.      * <li><b>el</b> : Element<div class="sub-desc">The current Element in the iteration.
  1132.      * <b>This is the flyweight (shared) Ext.Element instance, so if you require a
  1133.      * a reference to the dom node, use el.dom.</b></div></li>
  1134.      * <li><b>c</b> : Composite<div class="sub-desc">This Composite object.</div></li>
  1135.      * <li><b>idx</b> : Number<div class="sub-desc">The zero-based index in the iteration.</div></li>
  1136.      * </ul>
  1137.      * @param {Object} scope (optional) The scope (<i>this</i> reference) in which the function is executed. (defaults to the Element)
  1138.      * @return {CompositeElement} this
  1139.      */
  1140.     each : function(fn, scope){       
  1141.         var me = this,
  1142.             els = me.elements,
  1143.             len = els.length,
  1144.             i, e;
  1145.         
  1146.         for(i = 0; i<len; i++) {
  1147.             e = els[i];
  1148.             if(e){
  1149.                 e = this.getElement(e);
  1150.                 if(fn.call(scope || e, e, me, i)){
  1151.                     break;
  1152.                 }
  1153.             }
  1154.         }
  1155.         return me;
  1156.     },
  1157.     
  1158.     /**
  1159.     * Clears this Composite and adds the elements passed.
  1160.     * @param {Mixed} els Either an array of DOM elements, or another Composite from which to fill this Composite.
  1161.     * @return {CompositeElement} this
  1162.     */
  1163.     fill : function(els){
  1164.         var me = this;
  1165.         me.elements = [];
  1166.         me.add(els);
  1167.         return me;
  1168.     },
  1169.     
  1170.     /**
  1171.      * Filters this composite to only elements that match the passed selector.
  1172.      * @param {String/Function} selector A string CSS selector or a comparison function.
  1173.      * The comparison function will be called with the following arguments:<ul>
  1174.      * <li><code>el</code> : Ext.Element<div class="sub-desc">The current DOM element.</div></li>
  1175.      * <li><code>index</code> : Number<div class="sub-desc">The current index within the collection.</div></li>
  1176.      * </ul>
  1177.      * @return {CompositeElement} this
  1178.      */
  1179.     filter : function(selector){
  1180.         var els = [],
  1181.             me = this,
  1182.             elements = me.elements,
  1183.             fn = Ext.isFunction(selector) ? selector
  1184.                 : function(el){
  1185.                     return el.is(selector);
  1186.                 };
  1187.                 
  1188.         
  1189.         me.each(function(el, self, i){
  1190.             if(fn(el, i) !== false){
  1191.                 els[els.length] = me.transformElement(el);
  1192.             }
  1193.         });
  1194.         me.elements = els;
  1195.         return me;
  1196.     },
  1197.     
  1198.     /**
  1199.      * Find the index of the passed element within the composite collection.
  1200.      * @param el {Mixed} The id of an element, or an Ext.Element, or an HtmlElement to find within the composite collection.
  1201.      * @return Number The index of the passed Ext.Element in the composite collection, or -1 if not found.
  1202.      */
  1203.     indexOf : function(el){
  1204.         return this.elements.indexOf(this.transformElement(el));
  1205.     },
  1206.     
  1207.     /**
  1208.     * Replaces the specified element with the passed element.
  1209.     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
  1210.     * to replace.
  1211.     * @param {Mixed} replacement The id of an element or the Element itself.
  1212.     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
  1213.     * @return {CompositeElement} this
  1214.     */    
  1215.     replaceElement : function(el, replacement, domReplace){
  1216.         var index = !isNaN(el) ? el : this.indexOf(el),
  1217.             d;
  1218.         if(index > -1){
  1219.             replacement = Ext.getDom(replacement);
  1220.             if(domReplace){
  1221.                 d = this.elements[index];
  1222.                 d.parentNode.insertBefore(replacement, d);
  1223.                 Ext.removeNode(d);
  1224.             }
  1225.             this.elements.splice(index, 1, replacement);
  1226.         }
  1227.         return this;
  1228.     },
  1229.     
  1230.     /**
  1231.      * Removes all elements.
  1232.      */
  1233.     clear : function(){
  1234.         this.elements = [];
  1235.     }
  1236. };
  1237. Ext.CompositeElementLite.prototype.on = Ext.CompositeElementLite.prototype.addListener;
  1238. (function(){
  1239. var fnName,
  1240.     ElProto = Ext.Element.prototype,
  1241.     CelProto = Ext.CompositeElementLite.prototype;
  1242.     
  1243. for(fnName in ElProto){
  1244.     if(Ext.isFunction(ElProto[fnName])){
  1245.         (function(fnName){ 
  1246.             CelProto[fnName] = CelProto[fnName] || function(){
  1247.                 return this.invoke(fnName, arguments);
  1248.             };
  1249.         }).call(CelProto, fnName);
  1250.         
  1251.     }
  1252. }
  1253. })();
  1254. if(Ext.DomQuery){
  1255.     Ext.Element.selectorFunction = Ext.DomQuery.select;
  1256. /**
  1257.  * Selects elements based on the passed CSS selector to enable {@link Ext.Element Element} methods
  1258.  * to be applied to many related elements in one statement through the returned {@link Ext.CompositeElement CompositeElement} or
  1259.  * {@link Ext.CompositeElementLite CompositeElementLite} object.
  1260.  * @param {String/Array} selector The CSS selector or an array of elements
  1261.  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
  1262.  * @return {CompositeElementLite/CompositeElement}
  1263.  * @member Ext.Element
  1264.  * @method select
  1265.  */
  1266. Ext.Element.select = function(selector, root){
  1267.     var els;
  1268.     if(typeof selector == "string"){
  1269.         els = Ext.Element.selectorFunction(selector, root);
  1270.     }else if(selector.length !== undefined){
  1271.         els = selector;
  1272.     }else{
  1273.         throw "Invalid selector";
  1274.     }
  1275.     return new Ext.CompositeElementLite(els);
  1276. };
  1277. /**
  1278.  * Selects elements based on the passed CSS selector to enable {@link Ext.Element Element} methods
  1279.  * to be applied to many related elements in one statement through the returned {@link Ext.CompositeElement CompositeElement} or
  1280.  * {@link Ext.CompositeElementLite CompositeElementLite} object.
  1281.  * @param {String/Array} selector The CSS selector or an array of elements
  1282.  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
  1283.  * @return {CompositeElementLite/CompositeElement}
  1284.  * @member Ext
  1285.  * @method select
  1286.  */
  1287. Ext.select = Ext.Element.select;/**
  1288.  * @class Ext.CompositeElementLite
  1289.  */
  1290. Ext.apply(Ext.CompositeElementLite.prototype, {
  1291. addElements : function(els, root){
  1292.         if(!els){
  1293.             return this;
  1294.         }
  1295.         if(typeof els == "string"){
  1296.             els = Ext.Element.selectorFunction(els, root);
  1297.         }
  1298.         var yels = this.elements;        
  1299.     Ext.each(els, function(e) {
  1300.          yels.push(Ext.get(e));
  1301.         });
  1302.         return this;
  1303.     },
  1304.     
  1305.     /**
  1306.      * Returns the first Element
  1307.      * @return {Ext.Element}
  1308.      */
  1309.     first : function(){
  1310.         return this.item(0);
  1311.     },   
  1312.     
  1313.     /**
  1314.      * Returns the last Element
  1315.      * @return {Ext.Element}
  1316.      */
  1317.     last : function(){
  1318.         return this.item(this.getCount()-1);
  1319.     },
  1320.     
  1321.     /**
  1322.      * Returns true if this composite contains the passed element
  1323.      * @param el {Mixed} The id of an element, or an Ext.Element, or an HtmlElement to find within the composite collection.
  1324.      * @return Boolean
  1325.      */
  1326.     contains : function(el){
  1327.         return this.indexOf(el) != -1;
  1328.     },          /**
  1329.     * Removes the specified element(s).
  1330.     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
  1331.     * or an array of any of those.
  1332.     * @param {Boolean} removeDom (optional) True to also remove the element from the document
  1333.     * @return {CompositeElement} this
  1334.     */
  1335.     removeElement : function(keys, removeDom){
  1336.         var me = this,
  1337.         els = this.elements,     
  1338.      el;     
  1339.     Ext.each(keys, function(val){
  1340.     if ((el = (els[val] || els[val = me.indexOf(val)]))) {
  1341.      if(removeDom){
  1342.                     if(el.dom){
  1343.                         el.remove();
  1344.                     }else{
  1345.                         Ext.removeNode(el);
  1346.                     }
  1347.                 }
  1348.      els.splice(val, 1);     
  1349. }
  1350.     });
  1351.         return this;
  1352.     }    
  1353. }); /**
  1354.  * @class Ext.CompositeElement
  1355.  * @extends Ext.CompositeElementLite
  1356.  * <p>This class encapsulates a <i>collection</i> of DOM elements, providing methods to filter
  1357.  * members, or to perform collective actions upon the whole set.</p>
  1358.  * <p>Although they are not listed, this class supports all of the methods of {@link Ext.Element} and
  1359.  * {@link Ext.Fx}. The methods from these classes will be performed on all the elements in this collection.</p>
  1360.  * <p>All methods return <i>this</i> and can be chained.</p>
  1361.  * Usage:
  1362. <pre><code>
  1363. var els = Ext.select("#some-el div.some-class", true);
  1364. // or select directly from an existing element
  1365. var el = Ext.get('some-el');
  1366. el.select('div.some-class', true);
  1367. els.setWidth(100); // all elements become 100 width
  1368. els.hide(true); // all elements fade out and hide
  1369. // or
  1370. els.setWidth(100).hide(true);
  1371. </code></pre>
  1372.  */
  1373. Ext.CompositeElement = function(els, root){
  1374.     this.elements = [];
  1375.     this.add(els, root);
  1376. };
  1377. Ext.extend(Ext.CompositeElement, Ext.CompositeElementLite, {
  1378.     
  1379.     // private
  1380.     getElement : function(el){
  1381.         // In this case just return it, since we already have a reference to it
  1382.         return el;
  1383.     },
  1384.     
  1385.     // private
  1386.     transformElement : function(el){
  1387.         return Ext.get(el);
  1388.     }
  1389.     /**