Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / CompositeElementLite-more.html
index 8ac013e..657f5d0 100644 (file)
@@ -1,80 +1,89 @@
-<html>\r
-<head>\r
-  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    \r
-  <title>The source code</title>\r
-    <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
-    <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
-</head>\r
-<body  onload="prettyPrint();">\r
-    <pre class="prettyprint lang-js"><div id="cls-Ext.CompositeElementLite"></div>/**\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
-    <div id="method-Ext.CompositeElementLite-first"></div>/**\r
-     * Returns the first Element\r
-     * @return {Ext.Element}\r
-     */\r
-    first : function(){\r
-        return this.item(0);\r
-    },   \r
-    \r
-    <div id="method-Ext.CompositeElementLite-last"></div>/**\r
-     * Returns the last Element\r
-     * @return {Ext.Element}\r
-     */\r
-    last : function(){\r
-        return this.item(this.getCount()-1);\r
-    },\r
-    \r
-    <div id="method-Ext.CompositeElementLite-contains"></div>/**\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
+<!DOCTYPE html>
+<html>
+<head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+  <title>The source code</title>
+  <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
+  <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
+  <style type="text/css">
+    .highlight { display: block; background-color: #ddd; }
+  </style>
+  <script type="text/javascript">
+    function highlight() {
+      document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
+    }
+  </script>
+</head>
+<body onload="prettyPrint(); highlight();">
+  <pre class="prettyprint lang-js"><span id='Ext-CompositeElementLite'>/**
+</span> * @class Ext.CompositeElementLite
+ */
+Ext.apply(Ext.CompositeElementLite.prototype, {
+    addElements : function(els, root){
+        if(!els){
+            return this;
+        }
+        if(typeof els == &quot;string&quot;){
+            els = Ext.Element.selectorFunction(els, root);
+        }
+        var yels = this.elements;
+        Ext.each(els, function(e) {
+            yels.push(Ext.get(e));
+        });
+        return this;
     },
-    
-    <div id="method-Ext.CompositeElementLite-removeElement"></div>/**\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
+
+<span id='Ext-CompositeElementLite-method-first'>    /**
+</span>     * Returns the first Element
+     * @return {Ext.Element}
+     */
+    first : function(){
+        return this.item(0);
+    },
+
+<span id='Ext-CompositeElementLite-method-last'>    /**
+</span>     * Returns the last Element
+     * @return {Ext.Element}
+     */
+    last : function(){
+        return this.item(this.getCount()-1);
+    },
+
+<span id='Ext-CompositeElementLite-method-contains'>    /**
+</span>     * Returns true if this composite contains the passed element
+     * @param el {String/HTMLElement/Ext.Element/Number} 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;
+    },
+
+<span id='Ext-CompositeElementLite-method-removeElement'>    /**
+</span>    * Removes the specified element(s).
+    * @param {String/HTMLElement/Ext.Element/Number} 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 {Ext.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);
+                    }
+                }
+                Ext.Array.erase(els, val, 1);
+            }
+        });
+        return this;
+    }
 });
-</pre>    \r
-</body>\r
-</html>
\ No newline at end of file
+</pre>
+</body>
+</html>