X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/FieldContainer.html diff --git a/docs/source/FieldContainer.html b/docs/source/FieldContainer.html index 1853edec..082f4d20 100644 --- a/docs/source/FieldContainer.html +++ b/docs/source/FieldContainer.html @@ -1,5 +1,22 @@ -Sencha Documentation Project
/**
- * @class Ext.form.FieldContainer
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
+ * @class Ext.form.FieldContainer
  * @extends Ext.container.Container
 
 FieldContainer is a derivation of {@link Ext.container.Container Container} that implements the
@@ -94,11 +111,6 @@ __Usage of {@link #fieldDefaults}:__
     });
 
 
- * @constructor
- * Creates a new Ext.form.FieldContainer instance.
- * @param {Object} config The component configuration.
- *
- * @xtype fieldcontainer
  * @markdown
  * @docauthor Jason Johnston <jason@sencha.com>
  */
@@ -112,21 +124,21 @@ Ext.define('Ext.form.FieldContainer', {
 
     componentLayout: 'field',
 
-    /**
+    /**
      * @cfg {Boolean} combineLabels
      * If set to true, and there is no defined {@link #fieldLabel}, the field container will automatically
      * generate its label by combining the labels of all the fields it contains. Defaults to false.
      */
     combineLabels: false,
 
-    /**
+    /**
      * @cfg {String} labelConnector
      * The string to use when joining the labels of individual sub-fields, when {@link #combineLabels} is
      * set to true. Defaults to ', '.
      */
     labelConnector: ', ',
 
-    /**
+    /**
      * @cfg {Boolean} combineErrors
      * If set to true, the field container will automatically combine and display the validation errors from
      * all the fields it contains as a single error on the container, according to the configured
@@ -147,7 +159,7 @@ Ext.define('Ext.form.FieldContainer', {
         me.callParent();
     },
 
-    /**
+    /**
      * @protected Called when a {@link Ext.form.Labelable} instance is added to the container's subtree.
      * @param {Ext.form.Labelable} labelable The instance that was added
      */
@@ -157,7 +169,7 @@ Ext.define('Ext.form.FieldContainer', {
         me.updateLabel();
     },
 
-    /**
+    /**
      * @protected Called when a {@link Ext.form.Labelable} instance is removed from the container's subtree.
      * @param {Ext.form.Labelable} labelable The instance that was removed
      */
@@ -189,7 +201,7 @@ Ext.define('Ext.form.FieldContainer', {
         return Ext.applyIf(this.callParent(), this.getLabelableRenderData());
     },
 
-    /**
+    /**
      * Returns the combined field label if {@link #combineLabels} is set to true and if there is no
      * set {@link #fieldLabel}. Otherwise returns the fieldLabel like normal. You can also override
      * this method to provide a custom generated label.
@@ -204,7 +216,7 @@ Ext.define('Ext.form.FieldContainer', {
         return label;
     },
 
-    /**
+    /**
      * @private Updates the content of the labelEl if it is rendered
      */
     updateLabel: function() {
@@ -216,7 +228,7 @@ Ext.define('Ext.form.FieldContainer', {
     },
 
 
-    /**
+    /**
      * @private Fired when the error message of any field within the container changes, and updates the
      * combined error message to match.
      */
@@ -241,7 +253,7 @@ Ext.define('Ext.form.FieldContainer', {
         }
     },
 
-    /**
+    /**
      * Takes an Array of invalid {@link Ext.form.field.Field} objects and builds a combined list of error
      * messages from them. Defaults to prepending each message by the field name and a colon. This
      * can be overridden to provide custom combined error message handling, for instance changing
@@ -265,4 +277,6 @@ Ext.define('Ext.form.FieldContainer', {
         return this.bodyEl || this.callParent();
     }
 });
-
\ No newline at end of file +
+ +