Upgrade to ExtJS 3.2.1 - Released 04/27/2010
[extjs.git] / docs / source / CompositeElementLite.html
1 <html>
2 <head>
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    
4   <title>The source code</title>
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
7 </head>
8 <body  onload="prettyPrint();">
9     <pre class="prettyprint lang-js">/*!
10  * Ext JS Library 3.2.1
11  * Copyright(c) 2006-2010 Ext JS, Inc.
12  * licensing@extjs.com
13  * http://www.extjs.com/license
14  */
15 <div id="cls-Ext.CompositeElementLite"></div>/**
16  * @class Ext.CompositeElementLite
17  * <p>This class encapsulates a <i>collection</i> of DOM elements, providing methods to filter
18  * members, or to perform collective actions upon the whole set.</p>
19  * <p>Although they are not listed, this class supports all of the methods of {@link Ext.Element} and
20  * {@link Ext.Fx}. The methods from these classes will be performed on all the elements in this collection.</p>
21  * Example:<pre><code>
22 var els = Ext.select("#some-el div.some-class");
23 // or select directly from an existing element
24 var el = Ext.get('some-el');
25 el.select('div.some-class');
26
27 els.setWidth(100); // all elements become 100 width
28 els.hide(true); // all elements fade out and hide
29 // or
30 els.setWidth(100).hide(true);
31 </code>
32  */
33 Ext.CompositeElementLite = function(els, root){
34     <div id="prop-Ext.CompositeElementLite-elements"></div>/**
35      * <p>The Array of DOM elements which this CompositeElement encapsulates. Read-only.</p>
36      * <p>This will not <i>usually</i> be accessed in developers' code, but developers wishing
37      * to augment the capabilities of the CompositeElementLite class may use it when adding
38      * methods to the class.</p>
39      * <p>For example to add the <code>nextAll</code> method to the class to <b>add</b> all
40      * following siblings of selected elements, the code would be</p><code><pre>
41 Ext.override(Ext.CompositeElementLite, {
42     nextAll: function() {
43         var els = this.elements, i, l = els.length, n, r = [], ri = -1;
44
45 //      Loop through all elements in this Composite, accumulating
46 //      an Array of all siblings.
47         for (i = 0; i < l; i++) {
48             for (n = els[i].nextSibling; n; n = n.nextSibling) {
49                 r[++ri] = n;
50             }
51         }
52
53 //      Add all found siblings to this Composite
54         return this.add(r);
55     }
56 });</pre></code>
57      * @type Array
58      * @property elements
59      */
60     this.elements = [];
61     this.add(els, root);
62     this.el = new Ext.Element.Flyweight();
63 };
64
65 Ext.CompositeElementLite.prototype = {
66     isComposite: true,
67
68     // private
69     getElement : function(el){
70         // Set the shared flyweight dom property to the current element
71         var e = this.el;
72         e.dom = el;
73         e.id = el.id;
74         return e;
75     },
76
77     // private
78     transformElement : function(el){
79         return Ext.getDom(el);
80     },
81
82     <div id="method-Ext.CompositeElementLite-getCount"></div>/**
83      * Returns the number of elements in this Composite.
84      * @return Number
85      */
86     getCount : function(){
87         return this.elements.length;
88     },
89     <div id="method-Ext.CompositeElementLite-add"></div>/**
90      * Adds elements to this Composite object.
91      * @param {Mixed} els Either an Array of DOM elements to add, or another Composite object who's elements should be added.
92      * @return {CompositeElement} This Composite object.
93      */
94     add : function(els, root){
95         var me = this,
96             elements = me.elements;
97         if(!els){
98             return this;
99         }
100         if(typeof els == "string"){
101             els = Ext.Element.selectorFunction(els, root);
102         }else if(els.isComposite){
103             els = els.elements;
104         }else if(!Ext.isIterable(els)){
105             els = [els];
106         }
107
108         for(var i = 0, len = els.length; i < len; ++i){
109             elements.push(me.transformElement(els[i]));
110         }
111         return me;
112     },
113
114     invoke : function(fn, args){
115         var me = this,
116             els = me.elements,
117             len = els.length,
118             e,
119             i;
120
121         for(i = 0; i < len; i++) {
122             e = els[i];
123             if(e){
124                 Ext.Element.prototype[fn].apply(me.getElement(e), args);
125             }
126         }
127         return me;
128     },
129     <div id="method-Ext.CompositeElementLite-item"></div>/**
130      * Returns a flyweight Element of the dom element object at the specified index
131      * @param {Number} index
132      * @return {Ext.Element}
133      */
134     item : function(index){
135         var me = this,
136             el = me.elements[index],
137             out = null;
138
139         if(el){
140             out = me.getElement(el);
141         }
142         return out;
143     },
144
145     // fixes scope with flyweight
146     addListener : function(eventName, handler, scope, opt){
147         var els = this.elements,
148             len = els.length,
149             i, e;
150
151         for(i = 0; i<len; i++) {
152             e = els[i];
153             if(e) {
154                 Ext.EventManager.on(e, eventName, handler, scope || e, opt);
155             }
156         }
157         return this;
158     },
159     <div id="method-Ext.CompositeElementLite-each"></div>/**
160      * <p>Calls the passed function for each element in this composite.</p>
161      * @param {Function} fn The function to call. The function is passed the following parameters:<ul>
162      * <li><b>el</b> : Element<div class="sub-desc">The current Element in the iteration.
163      * <b>This is the flyweight (shared) Ext.Element instance, so if you require a
164      * a reference to the dom node, use el.dom.</b></div></li>
165      * <li><b>c</b> : Composite<div class="sub-desc">This Composite object.</div></li>
166      * <li><b>idx</b> : Number<div class="sub-desc">The zero-based index in the iteration.</div></li>
167      * </ul>
168      * @param {Object} scope (optional) The scope (<i>this</i> reference) in which the function is executed. (defaults to the Element)
169      * @return {CompositeElement} this
170      */
171     each : function(fn, scope){
172         var me = this,
173             els = me.elements,
174             len = els.length,
175             i, e;
176
177         for(i = 0; i<len; i++) {
178             e = els[i];
179             if(e){
180                 e = this.getElement(e);
181                 if(fn.call(scope || e, e, me, i) === false){
182                     break;
183                 }
184             }
185         }
186         return me;
187     },
188
189     <div id="method-Ext.CompositeElementLite-fill"></div>/**
190     * Clears this Composite and adds the elements passed.
191     * @param {Mixed} els Either an array of DOM elements, or another Composite from which to fill this Composite.
192     * @return {CompositeElement} this
193     */
194     fill : function(els){
195         var me = this;
196         me.elements = [];
197         me.add(els);
198         return me;
199     },
200
201     <div id="method-Ext.CompositeElementLite-filter"></div>/**
202      * Filters this composite to only elements that match the passed selector.
203      * @param {String/Function} selector A string CSS selector or a comparison function.
204      * The comparison function will be called with the following arguments:<ul>
205      * <li><code>el</code> : Ext.Element<div class="sub-desc">The current DOM element.</div></li>
206      * <li><code>index</code> : Number<div class="sub-desc">The current index within the collection.</div></li>
207      * </ul>
208      * @return {CompositeElement} this
209      */
210     filter : function(selector){
211         var els = [],
212             me = this,
213             elements = me.elements,
214             fn = Ext.isFunction(selector) ? selector
215                 : function(el){
216                     return el.is(selector);
217                 };
218
219
220         me.each(function(el, self, i){
221             if(fn(el, i) !== false){
222                 els[els.length] = me.transformElement(el);
223             }
224         });
225         me.elements = els;
226         return me;
227     },
228
229     <div id="method-Ext.CompositeElementLite-indexOf"></div>/**
230      * Find the index of the passed element within the composite collection.
231      * @param el {Mixed} The id of an element, or an Ext.Element, or an HtmlElement to find within the composite collection.
232      * @return Number The index of the passed Ext.Element in the composite collection, or -1 if not found.
233      */
234     indexOf : function(el){
235         return this.elements.indexOf(this.transformElement(el));
236     },
237
238     <div id="method-Ext.CompositeElementLite-replaceElement"></div>/**
239     * Replaces the specified element with the passed element.
240     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
241     * to replace.
242     * @param {Mixed} replacement The id of an element or the Element itself.
243     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
244     * @return {CompositeElement} this
245     */
246     replaceElement : function(el, replacement, domReplace){
247         var index = !isNaN(el) ? el : this.indexOf(el),
248             d;
249         if(index > -1){
250             replacement = Ext.getDom(replacement);
251             if(domReplace){
252                 d = this.elements[index];
253                 d.parentNode.insertBefore(replacement, d);
254                 Ext.removeNode(d);
255             }
256             this.elements.splice(index, 1, replacement);
257         }
258         return this;
259     },
260
261     <div id="method-Ext.CompositeElementLite-clear"></div>/**
262      * Removes all elements.
263      */
264     clear : function(){
265         this.elements = [];
266     }
267 };
268
269 Ext.CompositeElementLite.prototype.on = Ext.CompositeElementLite.prototype.addListener;
270
271 (function(){
272 var fnName,
273     ElProto = Ext.Element.prototype,
274     CelProto = Ext.CompositeElementLite.prototype;
275
276 for(fnName in ElProto){
277     if(Ext.isFunction(ElProto[fnName])){
278         (function(fnName){
279             CelProto[fnName] = CelProto[fnName] || function(){
280                 return this.invoke(fnName, arguments);
281             };
282         }).call(CelProto, fnName);
283
284     }
285 }
286 })();
287
288 if(Ext.DomQuery){
289     Ext.Element.selectorFunction = Ext.DomQuery.select;
290 }
291
292 <div id="method-Ext.Element-select"></div>/**
293  * Selects elements based on the passed CSS selector to enable {@link Ext.Element Element} methods
294  * to be applied to many related elements in one statement through the returned {@link Ext.CompositeElement CompositeElement} or
295  * {@link Ext.CompositeElementLite CompositeElementLite} object.
296  * @param {String/Array} selector The CSS selector or an array of elements
297  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
298  * @return {CompositeElementLite/CompositeElement}
299  * @member Ext.Element
300  * @method select
301  */
302 Ext.Element.select = function(selector, root){
303     var els;
304     if(typeof selector == "string"){
305         els = Ext.Element.selectorFunction(selector, root);
306     }else if(selector.length !== undefined){
307         els = selector;
308     }else{
309         throw "Invalid selector";
310     }
311     return new Ext.CompositeElementLite(els);
312 };
313 <div id="method-Ext-select"></div>/**
314  * Selects elements based on the passed CSS selector to enable {@link Ext.Element Element} methods
315  * to be applied to many related elements in one statement through the returned {@link Ext.CompositeElement CompositeElement} or
316  * {@link Ext.CompositeElementLite CompositeElementLite} object.
317  * @param {String/Array} selector The CSS selector or an array of elements
318  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
319  * @return {CompositeElementLite/CompositeElement}
320  * @member Ext
321  * @method select
322  */
323 Ext.select = Ext.Element.select;
324 </pre>    
325 </body>
326 </html>