X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/CheckboxGroup.html diff --git a/docs/source/CheckboxGroup.html b/docs/source/CheckboxGroup.html index ae9c4c67..21b719e2 100644 --- a/docs/source/CheckboxGroup.html +++ b/docs/source/CheckboxGroup.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.form.CheckboxGroup
  * @extends Ext.form.FieldContainer
  * <p>A {@link Ext.form.FieldContainer field container} which has a specialized layout for arranging
@@ -54,17 +71,17 @@ Ext.define('Ext.form.CheckboxGroup', {
     alias: 'widget.checkboxgroup',
     requires: ['Ext.layout.container.CheckboxGroup', 'Ext.form.field.Base'],
 
-    /**
+    /**
      * @cfg {String} name
      * @hide
      */
 
-    /**
+    /**
      * @cfg {Array} items An Array of {@link Ext.form.field.Checkbox Checkbox}es or Checkbox config objects
      * to arrange in the group.
      */
 
-    /**
+    /**
      * @cfg {String/Number/Array} columns Specifies the number of columns to use when displaying grouped
      * checkbox/radio controls using automatic layout.  This config can take several types of values:
      * <ul><li><b>'auto'</b> : <p class="sub-desc">The controls will be rendered one per column on one row and the width
@@ -79,7 +96,7 @@ Ext.define('Ext.form.CheckboxGroup', {
      */
     columns : 'auto',
 
-    /**
+    /**
      * @cfg {Boolean} vertical True to distribute contained controls across columns, completely filling each column
      * top to bottom before starting on the next column.  The number of controls in each column will be automatically
      * calculated to keep columns as even as possible.  The default value is false, so that controls will be added
@@ -87,13 +104,13 @@ Ext.define('Ext.form.CheckboxGroup', {
      */
     vertical : false,
 
-    /**
+    /**
      * @cfg {Boolean} allowBlank False to validate that at least one item in the group is checked (defaults to true).
      * If no items are selected at validation time, {@link #blankText} will be used as the error text.
      */
     allowBlank : true,
 
-    /**
+    /**
      * @cfg {String} blankText Error text to display if the {@link #allowBlank} validation fails (defaults to "You must
      * select at least one item in this group")
      */
@@ -105,7 +122,7 @@ Ext.define('Ext.form.CheckboxGroup', {
     // private
     groupCls : Ext.baseCSSPrefix + 'form-check-group',
 
-    /**
+    /**
      * @cfg {String} fieldBodyCls
      * An extra CSS class to be applied to the body content element in addition to {@link #baseBodyCls}.
      * Defaults to 'x-form-checkboxgroup-body'.
@@ -121,7 +138,7 @@ Ext.define('Ext.form.CheckboxGroup', {
         me.initField();
     },
 
-    /**
+    /**
      * @protected
      * Initializes the field's value based on the initial config. If the {@link #value} config is specified
      * then we use that to set the value; otherwise we initialize the originalValue by querying the values of
@@ -136,7 +153,7 @@ Ext.define('Ext.form.CheckboxGroup', {
         }
     },
 
-    /**
+    /**
      * @protected
      * When a checkbox is added to the group, monitor it for changes
      */
@@ -162,7 +179,7 @@ Ext.define('Ext.form.CheckboxGroup', {
         return toQueryString(value1) === toQueryString(value2);
     },
 
-    /**
+    /**
      * Runs CheckboxGroup's validations and returns an array of any errors. The only error by default
      * is if allowBlank is set to true and no items are checked.
      * @return {Array} Array of all validation errors
@@ -175,14 +192,14 @@ Ext.define('Ext.form.CheckboxGroup', {
         return errors;
     },
 
-    /**
+    /**
      * @private Returns all checkbox components within the container
      */
     getBoxes: function() {
         return this.query('[isCheckbox]');
     },
 
-    /**
+    /**
      * @private Convenience function which calls the given function for every checkbox in the group
      * @param {Function} fn The function to call
      * @param {Object} scope Optional scope object
@@ -191,7 +208,7 @@ Ext.define('Ext.form.CheckboxGroup', {
         Ext.Array.forEach(this.getBoxes(), fn, scope || this);
     },
 
-    /**
+    /**
      * Returns an Array of all checkboxes in the container which are currently checked
      * @return {Array} Array of Ext.form.field.Checkbox components
      */
@@ -216,7 +233,7 @@ Ext.define('Ext.form.CheckboxGroup', {
         this.readOnly = readOnly;
     },
 
-    /**
+    /**
      * Resets the checked state of all {@link Ext.form.field.Checkbox checkboxes} in the group to their
      * originally loaded values and clears any validation messages.
      * See {@link Ext.form.Basic}.{@link Ext.form.Basic#trackResetOnLoad trackResetOnLoad}
@@ -248,7 +265,7 @@ Ext.define('Ext.form.CheckboxGroup', {
     },
 
 
-    /**
+    /**
      * <p>Sets the value(s) of all checkboxes in the group. The expected format is an Object of
      * name-value pairs corresponding to the names of the checkboxes in the group. Each pair can
      * have either a single or multiple values:</p>
@@ -318,7 +335,7 @@ myCheckboxGroup.setValue({
     },
 
 
-    /**
+    /**
      * <p>Returns an object containing the values of all checked checkboxes within the group. Each key-value pair
      * in the object corresponds to a checkbox {@link Ext.form.field.Checkbox#name name}. If there is only one checked
      * checkbox with a particular name, the value of that pair will be the String
@@ -389,4 +406,6 @@ myCheckboxGroup.setValue({
 
 });
 
-
\ No newline at end of file +
+ +