Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / docs / source / Element.legacy.html
diff --git a/docs/source/Element.legacy.html b/docs/source/Element.legacy.html
new file mode 100644 (file)
index 0000000..1272b9a
--- /dev/null
@@ -0,0 +1,45 @@
+<html>\r
+<head>\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">/**\r
+ * @class Ext.Element\r
+ */\r
+Ext.Element.addMethods({\r
+    <div id="method-Ext.Element-autoHeight"></div>/**\r
+     * Measures the element's content height and updates height to match. Note: this function uses setTimeout so\r
+     * the new height may not be available immediately.\r
+     * @param {Boolean} animate (optional) Animate the transition (defaults to false)\r
+     * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)\r
+     * @param {Function} onComplete (optional) Function to call when animation completes\r
+     * @param {String} easing (optional) Easing method to use (defaults to easeOut)\r
+     * @return {Ext.Element} this\r
+     */\r
+    autoHeight : function(animate, duration, onComplete, easing){\r
+        var oldHeight = this.getHeight();\r
+        this.clip();\r
+        this.setHeight(1); // force clipping\r
+        setTimeout(function(){\r
+            var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari\r
+            if(!animate){\r
+                this.setHeight(height);\r
+                this.unclip();\r
+                if(typeof onComplete == "function"){\r
+                    onComplete();\r
+                }\r
+            }else{\r
+                this.setHeight(oldHeight); // restore original height\r
+                this.setHeight(height, animate, duration, function(){\r
+                    this.unclip();\r
+                    if(typeof onComplete == "function") onComplete();\r
+                }.createDelegate(this), easing);\r
+            }\r
+        }.createDelegate(this), 0);\r
+        return this;\r
+    }\r
+});</pre>    \r
+</body>\r
+</html>
\ No newline at end of file