+els.setWidth(100); <i>// all elements become 100 width\r</i>
+els.hide(true); <i>// all elements fade out and hide\r</i>
+<i>// or\r</i>
+els.setWidth(100).hide(true);</code></pre></div><div class="hr"></div><a id="Ext.CompositeElement-props"></a><h2>Public Properties</h2><table cellspacing="0" class="member-table"><tbody><tr><th colspan="2" class="sig-header">Property</th><th class="msource-header">Defined By</th></tr><tr class="property-row expandable inherited"><td class="micon"><a href="#expand" class="exi"> </a></td><td class="sig"><a id="Ext.CompositeElementLite-elements"></a><b><a href="source/CompositeElementLite.html#prop-Ext.CompositeElementLite-elements">elements</a></b> : Array<div class="mdesc"><div class="short">The Array of DOM elements which this CompositeElement encapsulates. Read-only.
+This will not usually be accessed in ...</div><div class="long"><p>The Array of DOM elements which this CompositeElement encapsulates. Read-only.</p>\r
+<p>This will not <i>usually</i> be accessed in developers' code, but developers wishing\r
+to augment the capabilities of the CompositeElementLite class may use it when adding\r
+methods to the class.</p>\r
+<p>For example to add the <code>nextAll</code> method to the class to <b>add</b> all\r
+following siblings of selected elements, the code would be</p><code><pre>\r
+Ext.override(Ext.CompositeElementLite, {\r
+ nextAll: <b>function</b>() {\r
+ <b>var</b> els = this.elements, i, l = els.length, n, r = [], ri = -1;\r
+\r
+<i>// Loop through all elements <b>in</b> this Composite, accumulating\r</i>
+<i>// an Array of all siblings.\r</i>
+ <b>for</b> (i = 0; i < l; i++) {\r
+ <b>for</b> (n = els[i].nextSibling; n; n = n.nextSibling) {\r
+ r[++ri] = n;\r
+ }\r
+ }\r
+\r
+<i>// Add all found siblings to this Composite\r</i>
+ <b>return</b> this.add(r);\r
+ }\r
+});</pre></code></div></div></td><td class="msource"><a href="output/Ext.CompositeElementLite.html#elements" ext:member="#elements" ext:cls="Ext.CompositeElementLite">CompositeElementLite</a></td></tr></tbody></table><a id="Ext.CompositeElement-methods"></a><h2>Public Methods</h2><table cellspacing="0" class="member-table"><tbody><tr><th colspan="2" class="sig-header">Method</th><th class="msource-header">Defined By</th></tr><tr class="method-row expandable "><td class="micon"><a href="#expand" class="exi"> </a></td><td class="sig"><a id="Ext.CompositeElement-"></a><b><a href="source/CompositeElement.html#method-Ext.CompositeElement-"></a></b>( <code>Function fn</code>, <span title="Optional" class="optional">[<code>Object scope</code>]</span> )
+ :
+ CompositeElement<div class="mdesc"><div class="short">Iterates each element in this composite
+calling the supplied function using Ext.each.</div><div class="long">Iterates each <code>element</code> in this <code>composite</code>\r
+calling the supplied function using <a href="output/Ext.html#Ext-each" ext:member="each" ext:cls="Ext">Ext.each</a>.<div class="mdetail-params"><strong>Parameters:</strong><ul><li><code>fn</code> : Function<div class="sub-desc">The function to be called with each\r
+<code>element</code>. If the supplied function returns <tt>false</tt>,\r
+iteration stops. This function is called with the following arguments:\r
+<div class="mdetail-params"><ul>\r
+<li><code>element</code> : <i>Ext.Element</i><div class="sub-desc">The element at the current <code>index</code>\r
+in the <code>composite</code></div></li>\r
+<li><code>composite</code> : <i>Object</i> <div class="sub-desc">This composite.</div></li>\r
+<li><code>index</code> : <i>Number</i> <div class="sub-desc">The current index within the <code>composite</code> </div></li>\r
+</ul></div></div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (<code><this</code> reference) in which the specified function is executed.\r
+Defaults to the <code>element</code> at the current <code>index</code>\r
+within the composite.</div></li></ul><strong>Returns:</strong><ul><li><code>CompositeElement</code><div class="sub-desc">this</div></li></ul></div></div></div></td><td class="msource">CompositeElement</td></tr><tr class="method-row expandable inherited"><td class="micon"><a href="#expand" class="exi"> </a></td><td class="sig"><a id="Ext.CompositeElementLite-add"></a><b><a href="source/CompositeElementLite.html#method-Ext.CompositeElementLite-add">add</a></b>( <code>Mixed els</code> )