Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / docs / source / CompositeElementLite-more.html
1 <html>
2 <head>
3   <title>The source code</title>
4     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
5     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
6 </head>
7 <body  onload="prettyPrint();">
8     <pre class="prettyprint lang-js">/*!
9  * Ext JS Library 3.0.3
10  * Copyright(c) 2006-2009 Ext JS, LLC
11  * licensing@extjs.com
12  * http://www.extjs.com/license
13  */
14 <div id="cls-Ext.CompositeElementLite"></div>/**\r
15  * @class Ext.CompositeElementLite\r
16  */\r
17 Ext.apply(Ext.CompositeElementLite.prototype, { \r
18         addElements : function(els, root){\r
19         if(!els){\r
20             return this;\r
21         }\r
22         if(typeof els == "string"){\r
23             els = Ext.Element.selectorFunction(els, root);\r
24         }\r
25         var yels = this.elements;        \r
26             Ext.each(els, function(e) {\r
27                 yels.push(Ext.get(e));\r
28         });\r
29         return this;\r
30     },\r
31     \r
32     <div id="method-Ext.CompositeElementLite-first"></div>/**\r
33      * Returns the first Element\r
34      * @return {Ext.Element}\r
35      */\r
36     first : function(){\r
37         return this.item(0);\r
38     },   \r
39     \r
40     <div id="method-Ext.CompositeElementLite-last"></div>/**\r
41      * Returns the last Element\r
42      * @return {Ext.Element}\r
43      */\r
44     last : function(){\r
45         return this.item(this.getCount()-1);\r
46     },\r
47     \r
48     <div id="method-Ext.CompositeElementLite-contains"></div>/**\r
49      * Returns true if this composite contains the passed element\r
50      * @param el {Mixed} The id of an element, or an Ext.Element, or an HtmlElement to find within the composite collection.\r
51      * @return Boolean\r
52      */\r
53     contains : function(el){\r
54         return this.indexOf(el) != -1;\r
55     },
56     
57     <div id="method-Ext.CompositeElementLite-removeElement"></div>/**\r
58     * Removes the specified element(s).\r
59     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite\r
60     * or an array of any of those.\r
61     * @param {Boolean} removeDom (optional) True to also remove the element from the document\r
62     * @return {CompositeElement} this\r
63     */\r
64     removeElement : function(keys, removeDom){\r
65         var me = this,\r
66                 els = this.elements,        \r
67                 el;             \r
68             Ext.each(keys, function(val){\r
69                     if ((el = (els[val] || els[val = me.indexOf(val)]))) {\r
70                         if(removeDom){\r
71                     if(el.dom){\r
72                         el.remove();\r
73                     }else{\r
74                         Ext.removeNode(el);\r
75                     }\r
76                 }\r
77                         els.splice(val, 1);                     \r
78                         }\r
79             });\r
80         return this;\r
81     }    \r
82 });
83 </pre>
84 </body>
85 </html>