Upgrade to ExtJS 3.3.1 - Released 11/30/2010
[extjs.git] / src / core / CompositeElementLite-more.js
index 9e516db..ade6ddd 100644 (file)
 /*!
- * Ext JS Library 3.0.0
- * Copyright(c) 2006-2009 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
+ * Ext JS Library 3.3.1
+ * Copyright(c) 2006-2010 Sencha Inc.
+ * licensing@sencha.com
+ * http://www.sencha.com/license
  */
-/**\r
- * @class Ext.CompositeElementLite\r
- */\r
-Ext.apply(Ext.CompositeElementLite.prototype, {        \r
-       addElements : function(els, root){\r
-        if(!els){\r
-            return this;\r
-        }\r
-        if(typeof els == "string"){\r
-            els = Ext.Element.selectorFunction(els, root);\r
-        }\r
-        var yels = this.elements;        \r
-           Ext.each(els, function(e) {\r
-               yels.push(Ext.get(e));\r
-        });\r
-        return this;\r
-    },\r
-    \r
-    /**\r
-    * Clears this composite and adds the elements returned by the passed selector.\r
-    * @param {String/Array} els A string CSS selector, an array of elements or an element\r
-    * @return {CompositeElement} this\r
-    */\r
-    fill : function(els){\r
-        this.elements = [];\r
-        this.add(els);\r
-        return this;\r
-    },\r
-    \r
-    /**\r
-     * Returns the first Element\r
-     * @return {Ext.Element}\r
-     */\r
-    first : function(){\r
-        return this.item(0);\r
-    },   \r
-    \r
-    /**\r
-     * Returns the last Element\r
-     * @return {Ext.Element}\r
-     */\r
-    last : function(){\r
-        return this.item(this.getCount()-1);\r
-    },\r
-    \r
-    /**\r
-     * Returns true if this composite contains the passed element\r
-     * @param el {Mixed} The id of an element, or an Ext.Element, or an HtmlElement to find within the composite collection.\r
-     * @return Boolean\r
-     */\r
-    contains : function(el){\r
-        return this.indexOf(el) != -1;\r
-    },\r
-\r
-    /**\r
-    * Filters this composite to only elements that match the passed selector.\r
-    * @param {String} selector A string CSS selector\r
-    * @return {CompositeElement} this\r
-    */\r
-    filter : function(selector){\r
-        var els = [];\r
-        this.each(function(el){\r
-            if(el.is(selector)){\r
-                els[els.length] = el.dom;\r
-            }\r
-        });\r
-        this.fill(els);\r
-        return this;\r
+/**
+ * @class Ext.CompositeElementLite
+ */
+Ext.apply(Ext.CompositeElementLite.prototype, {
+    addElements : function(els, root){
+        if(!els){
+            return this;
+        }
+        if(typeof els == "string"){
+            els = Ext.Element.selectorFunction(els, root);
+        }
+        var yels = this.elements;
+        Ext.each(els, function(e) {
+            yels.push(Ext.get(e));
+        });
+        return this;
+    },
+
+    /**
+     * Returns the first Element
+     * @return {Ext.Element}
+     */
+    first : function(){
+        return this.item(0);
+    },
+
+    /**
+     * Returns the last Element
+     * @return {Ext.Element}
+     */
+    last : function(){
+        return this.item(this.getCount()-1);
+    },
+
+    /**
+     * Returns true if this composite contains the passed element
+     * @param el {Mixed} The id of an element, or an Ext.Element, or an HtmlElement to find within the composite collection.
+     * @return Boolean
+     */
+    contains : function(el){
+        return this.indexOf(el) != -1;
     },
-    
-    /**\r
-    * Removes the specified element(s).\r
-    * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite\r
-    * or an array of any of those.\r
-    * @param {Boolean} removeDom (optional) True to also remove the element from the document\r
-    * @return {CompositeElement} this\r
-    */\r
-    removeElement : function(keys, removeDom){\r
-        var me = this,\r
-               els = this.elements,        \r
-               el;             \r
-           Ext.each(keys, function(val){\r
-                   if ((el = (els[val] || els[val = me.indexOf(val)]))) {\r
-                       if(removeDom){\r
-                    if(el.dom){\r
-                        el.remove();\r
-                    }else{\r
-                        Ext.removeNode(el);\r
-                    }\r
-                }\r
-                       els.splice(val, 1);                     \r
-                       }\r
-           });\r
-        return this;\r
-    }    \r
+
+    /**
+    * Removes the specified element(s).
+    * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
+    * or an array of any of those.
+    * @param {Boolean} removeDom (optional) True to also remove the element from the document
+    * @return {CompositeElement} this
+    */
+    removeElement : function(keys, removeDom){
+        var me = this,
+            els = this.elements,
+            el;
+        Ext.each(keys, function(val){
+            if ((el = (els[val] || els[val = me.indexOf(val)]))) {
+                if(removeDom){
+                    if(el.dom){
+                        el.remove();
+                    }else{
+                        Ext.removeNode(el);
+                    }
+                }
+                els.splice(val, 1);
+            }
+        });
+        return this;
+    }
 });