Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / Errors.html
index 7e37e8e..34bee9c 100644 (file)
@@ -3,8 +3,8 @@
 <head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <title>The source code</title>
-  <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
-  <script type="text/javascript" src="../prettify/prettify.js"></script>
+  <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>
 </span> * @author Ed Spencer
  * @class Ext.data.Errors
  * @extends Ext.util.MixedCollection
- * 
+ *
  * &lt;p&gt;Wraps a collection of validation error responses and provides convenient functions for
  * accessing and errors for specific fields.&lt;/p&gt;
- * 
+ *
  * &lt;p&gt;Usually this class does not need to be instantiated directly - instances are instead created
  * automatically when {@link Ext.data.Model#validate validate} on a model instance:&lt;/p&gt;
- * 
+ *
 &lt;pre&gt;&lt;code&gt;
 //validate some existing model instance - in this case it returned 2 failures messages
 var errors = myModel.validate();
@@ -39,32 +39,32 @@ errors.getByField('title'); // [{field: 'title', message: 'is too short'}]
  */
 Ext.define('Ext.data.Errors', {
     extend: 'Ext.util.MixedCollection',
-    
+
 <span id='Ext-data-Errors-method-isValid'>    /**
 </span>     * Returns true if there are no errors in the collection
-     * @return {Boolean} 
+     * @return {Boolean}
      */
     isValid: function() {
         return this.length === 0;
     },
-    
+
 <span id='Ext-data-Errors-method-getByField'>    /**
 </span>     * Returns all of the errors for the given field
      * @param {String} fieldName The field to get errors for
-     * @return {Array} All errors for the given field
+     * @return {Object[]} All errors for the given field
      */
     getByField: function(fieldName) {
         var errors = [],
             error, field, i;
-            
+
         for (i = 0; i &lt; this.length; i++) {
             error = this.items[i];
-            
+
             if (error.field == fieldName) {
                 errors.push(error);
             }
         }
-        
+
         return errors;
     }
 });