X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..2e847cf21b8ab9d15fa167b315ca5b2fa92638fc:/docs/source/Ext-more.html diff --git a/docs/source/Ext-more.html b/docs/source/Ext-more.html index a047fc57..4f21c015 100644 --- a/docs/source/Ext-more.html +++ b/docs/source/Ext-more.html @@ -1,21 +1,16 @@ - - - The source code - - - - -
/*!
- * Ext JS Library 3.0.3
- * Copyright(c) 2006-2009 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
- */
-/**
+
+
+      
+  The source code
+    
+    
+
+
+    
/** * @class Ext */ -Ext.ns("Ext.grid", "Ext.dd", "Ext.tree", "Ext.form", "Ext.menu", +Ext.ns("Ext.grid", "Ext.list", "Ext.dd", "Ext.tree", "Ext.form", "Ext.menu", "Ext.state", "Ext.layout", "Ext.app", "Ext.ux", "Ext.chart", "Ext.direct");
/** * Namespace alloted for extensions to the framework. @@ -65,8 +60,8 @@ Ext.apply(Ext, function(){ * @return {Number} Value, if numeric, else defaultValue */ num : function(v, defaultValue){ - v = Number(Ext.isEmpty(v) || Ext.isBoolean(v) ? NaN : v); - return isNaN(v)? defaultValue : v; + v = Number(Ext.isEmpty(v) || Ext.isArray(v) || Ext.isBoolean(v) || (Ext.isString(v) && v.trim().length == 0) ? NaN : v); + return isNaN(v) ? defaultValue : v; },
/** @@ -339,7 +334,7 @@ ImageComponent = Ext.extend(Ext.BoxComponent, { * @return {Number} The mean. */ mean : function(arr){ - return Ext.sum(arr) / arr.length; + return arr.length > 0 ? Ext.sum(arr) / arr.length : undefined; },
/** @@ -550,7 +545,7 @@ Ext.zip( }; }()); -/** +
/** * @class Function * These functions are available on every Function object (any JavaScript function). */ @@ -590,7 +585,7 @@ sayGoodbye('Fred'); // both alerts show }); -/** +
/** * @class String * These functions are available as static methods on the JavaScript String object. */ @@ -693,6 +688,6 @@ Ext.applyIf(Number.prototype, { return Math.min(Math.max(this, min), max); } }); -
- +
+ \ No newline at end of file