Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / CheckboxGroup.html
index e11b897..6efa745 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>
@@ -17,9 +17,9 @@
 <body onload="prettyPrint(); highlight();">
   <pre class="prettyprint lang-js"><span id='Ext-form-CheckboxGroup'>/**
 </span> * A {@link Ext.form.FieldContainer field container} which has a specialized layout for arranging
- * {@link Ext.form.field.Checkbox} controls into columns, and provides convenience {@link Ext.form.field.Field} methods
- * for {@link #getValue getting}, {@link #setValue setting}, and {@link #validate validating} the group
- * of checkboxes as a whole.
+ * {@link Ext.form.field.Checkbox} controls into columns, and provides convenience
+ * {@link Ext.form.field.Field} methods for {@link #getValue getting}, {@link #setValue setting},
+ * and {@link #validate validating} the group of checkboxes as a whole.
  *
  * # Validation
  *
  * types; for instance you may wish to use a custom arrangement of hbox and vbox containers. In that case
  * the checkbox components at any depth will still be managed by the CheckboxGroup's validation.
  *
- * {@img Ext.form.CheckboxGroup/Ext.form.CheckboxGroup.png Ext.form.CheckboxGroup component}
- *
- * # Example usage
- *
+ *     @example
  *     Ext.create('Ext.form.Panel', {
  *         title: 'Checkbox Group',
  *         width: 300,
  *         height: 125,
  *         bodyPadding: 10,
- *         renderTo: Ext.getBody(),        
- *         items:[{            
+ *         renderTo: Ext.getBody(),
+ *         items:[{
  *             xtype: 'checkboxgroup',
  *             fieldLabel: 'Two Columns',
  *             // Arrange radio buttons into two columns, distributed vertically
  *             columns: 2,
  *             vertical: true,
  *             items: [
- *                 {boxLabel: 'Item 1', name: 'rb', inputValue: '1'},
- *                 {boxLabel: 'Item 2', name: 'rb', inputValue: '2', checked: true},
- *                 {boxLabel: 'Item 3', name: 'rb', inputValue: '3'},
- *                 {boxLabel: 'Item 4', name: 'rb', inputValue: '4'},
- *                 {boxLabel: 'Item 5', name: 'rb', inputValue: '5'},
- *                 {boxLabel: 'Item 6', name: 'rb', inputValue: '6'}
+ *                 { boxLabel: 'Item 1', name: 'rb', inputValue: '1' },
+ *                 { boxLabel: 'Item 2', name: 'rb', inputValue: '2', checked: true },
+ *                 { boxLabel: 'Item 3', name: 'rb', inputValue: '3' },
+ *                 { boxLabel: 'Item 4', name: 'rb', inputValue: '4' },
+ *                 { boxLabel: 'Item 5', name: 'rb', inputValue: '5' },
+ *                 { boxLabel: 'Item 6', name: 'rb', inputValue: '6' }
  *             ]
  *         }]
  *     });
- *
  */
 Ext.define('Ext.form.CheckboxGroup', {
     extend:'Ext.form.FieldContainer',
@@ -79,42 +75,45 @@ Ext.define('Ext.form.CheckboxGroup', {
      */
 
 <span id='Ext-form-CheckboxGroup-cfg-items'>    /**
-</span>     * @cfg {Array} items An Array of {@link Ext.form.field.Checkbox Checkbox}es or Checkbox config objects
-     * to arrange in the group.
+</span>     * @cfg {Ext.form.field.Checkbox[]/Object[]} items
+     * An Array of {@link Ext.form.field.Checkbox Checkbox}es or Checkbox config objects to arrange in the group.
      */
 
 <span id='Ext-form-CheckboxGroup-cfg-columns'>    /**
-</span>     * @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:
-     * &lt;ul&gt;&lt;li&gt;&lt;b&gt;'auto'&lt;/b&gt; : &lt;p class=&quot;sub-desc&quot;&gt;The controls will be rendered one per column on one row and the width
-     * of each column will be evenly distributed based on the width of the overall field container. This is the default.&lt;/p&gt;&lt;/li&gt;
-     * &lt;li&gt;&lt;b&gt;Number&lt;/b&gt; : &lt;p class=&quot;sub-desc&quot;&gt;If you specific a number (e.g., 3) that number of columns will be
-     * created and the contained controls will be automatically distributed based on the value of {@link #vertical}.&lt;/p&gt;&lt;/li&gt;
-     * &lt;li&gt;&lt;b&gt;Array&lt;/b&gt; : &lt;p class=&quot;sub-desc&quot;&gt;You can also specify an array of column widths, mixing integer
-     * (fixed width) and float (percentage width) values as needed (e.g., [100, .25, .75]). Any integer values will
-     * be rendered first, then any float values will be calculated as a percentage of the remaining space. Float
-     * values do not have to add up to 1 (100%) although if you want the controls to take up the entire field
-     * container you should do so.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;
+</span>     * @cfg {String/Number/Number[]} 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:
+     *
+     * - 'auto' - The controls will be rendered one per column on one row and the width of each column will be evenly
+     *   distributed based on the width of the overall field container. This is the default.
+     * - Number - If you specific a number (e.g., 3) that number of columns will be created and the contained controls
+     *   will be automatically distributed based on the value of {@link #vertical}.
+     * - Array - You can also specify an array of column widths, mixing integer (fixed width) and float (percentage
+     *   width) values as needed (e.g., [100, .25, .75]). Any integer values will be rendered first, then any float
+     *   values will be calculated as a percentage of the remaining space. Float values do not have to add up to 1
+     *   (100%) although if you want the controls to take up the entire field container you should do so.
      */
     columns : 'auto',
 
 <span id='Ext-form-CheckboxGroup-cfg-vertical'>    /**
-</span>     * @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
-     * to columns one at a time, completely filling each row left to right before starting on the next row.
+</span>     * @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 to columns one at a time,
+     * completely filling each row left to right before starting on the next row.
      */
     vertical : false,
 
 <span id='Ext-form-CheckboxGroup-cfg-allowBlank'>    /**
-</span>     * @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.
+</span>     * @cfg {Boolean} allowBlank
+     * False to validate that at least one item in the group is checked. If no items are selected at
+     * validation time, {@link #blankText} will be used as the error text.
      */
     allowBlank : true,
 
 <span id='Ext-form-CheckboxGroup-cfg-blankText'>    /**
-</span>     * @cfg {String} blankText Error text to display if the {@link #allowBlank} validation fails (defaults to &quot;You must
-     * select at least one item in this group&quot;)
+</span>     * @cfg {String} blankText
+     * Error text to display if the {@link #allowBlank} validation fails
      */
     blankText : &quot;You must select at least one item in this group&quot;,
 
@@ -141,10 +140,10 @@ Ext.define('Ext.form.CheckboxGroup', {
     },
 
 <span id='Ext-form-CheckboxGroup-method-initValue'>    /**
-</span>     * @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
-     * all sub-checkboxes after they have been initialized.
+</span>     * 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 all sub-checkboxes
+     * after they have been initialized.
+     * @protected
      */
     initValue: function() {
         var me = this,
@@ -156,8 +155,9 @@ Ext.define('Ext.form.CheckboxGroup', {
     },
 
 <span id='Ext-form-CheckboxGroup-method-onFieldAdded'>    /**
-</span>     * @protected
-     * When a checkbox is added to the group, monitor it for changes
+</span>     * When a checkbox is added to the group, monitor it for changes
+     * @param {Object} field
+     * @protected
      */
     onFieldAdded: function(field) {
         var me = this;
@@ -182,9 +182,9 @@ Ext.define('Ext.form.CheckboxGroup', {
     },
 
 <span id='Ext-form-CheckboxGroup-method-getErrors'>    /**
-</span>     * 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
+</span>     * 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 {String[]} Array of all validation errors
      */
     getErrors: function() {
         var errors = [];
@@ -204,7 +204,7 @@ Ext.define('Ext.form.CheckboxGroup', {
 <span id='Ext-form-CheckboxGroup-method-eachBox'>    /**
 </span>     * @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
+     * @param {Object} scope (Optional) scope object
      */
     eachBox: function(fn, scope) {
         Ext.Array.forEach(this.getBoxes(), fn, scope || this);
@@ -212,7 +212,7 @@ Ext.define('Ext.form.CheckboxGroup', {
 
 <span id='Ext-form-CheckboxGroup-method-getChecked'>    /**
 </span>     * Returns an Array of all checkboxes in the container which are currently checked
-     * @return {Array} Array of Ext.form.field.Checkbox components
+     * @return {Ext.form.field.Checkbox[]} Array of Ext.form.field.Checkbox components
      */
     getChecked: function() {
         return Ext.Array.filter(this.getBoxes(), function(cb) {
@@ -236,8 +236,8 @@ Ext.define('Ext.form.CheckboxGroup', {
     },
 
 <span id='Ext-form-CheckboxGroup-method-reset'>    /**
-</span>     * 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.
+</span>     * 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}
      */
     reset: function() {
@@ -268,51 +268,54 @@ Ext.define('Ext.form.CheckboxGroup', {
 
 
 <span id='Ext-form-CheckboxGroup-method-setValue'>    /**
-</span>     * &lt;p&gt;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:&lt;/p&gt;
-     * &lt;ul&gt;
-     *   &lt;li&gt;A single Boolean or String value will be passed to the &lt;code&gt;setValue&lt;/code&gt; method of the
-     *   checkbox with that name. See the rules in {@link Ext.form.field.Checkbox#setValue} for accepted values.&lt;/li&gt;
-     *   &lt;li&gt;An Array of String values will be matched against the {@link Ext.form.field.Checkbox#inputValue inputValue}
-     *   of checkboxes in the group with that name; those checkboxes whose inputValue exists in the array will be
-     *   checked and others will be unchecked.&lt;/li&gt;
-     * &lt;/ul&gt;
-     * &lt;p&gt;If a checkbox's name is not in the mapping at all, it will be unchecked.&lt;/p&gt;
-     * &lt;p&gt;An example:&lt;/p&gt;
-     * &lt;pre&gt;&lt;code&gt;var myCheckboxGroup = new Ext.form.CheckboxGroup({
-    columns: 3,
-    items: [{
-        name: 'cb1',
-        boxLabel: 'Single 1'
-    }, {
-        name: 'cb2',
-        boxLabel: 'Single 2'
-    }, {
-        name: 'cb3',
-        boxLabel: 'Single 3'
-    }, {
-        name: 'cbGroup',
-        boxLabel: 'Grouped 1'
-        inputValue: 'value1'
-    }, {
-        name: 'cbGroup',
-        boxLabel: 'Grouped 2'
-        inputValue: 'value2'
-    }, {
-        name: 'cbGroup',
-        boxLabel: 'Grouped 3'
-        inputValue: 'value3'
-    }]
-});
-
-myCheckboxGroup.setValue({
-    cb1: true,
-    cb3: false,
-    cbGroup: ['value1', 'value3']
-});&lt;/code&gt;&lt;/pre&gt;
-     * &lt;p&gt;The above code will cause the checkbox named 'cb1' to be checked, as well as the first and third
-     * checkboxes named 'cbGroup'. The other three checkboxes will be unchecked.&lt;/p&gt;
+</span>     * 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:
+     *
+     *   - A single Boolean or String value will be passed to the `setValue` method of the checkbox with that name.
+     *     See the rules in {@link Ext.form.field.Checkbox#setValue} for accepted values.
+     *   - An Array of String values will be matched against the {@link Ext.form.field.Checkbox#inputValue inputValue}
+     *     of checkboxes in the group with that name; those checkboxes whose inputValue exists in the array will be
+     *     checked and others will be unchecked.
+     *
+     * If a checkbox's name is not in the mapping at all, it will be unchecked.
+     *
+     * An example:
+     *
+     *     var myCheckboxGroup = new Ext.form.CheckboxGroup({
+     *         columns: 3,
+     *         items: [{
+     *             name: 'cb1',
+     *             boxLabel: 'Single 1'
+     *         }, {
+     *             name: 'cb2',
+     *             boxLabel: 'Single 2'
+     *         }, {
+     *             name: 'cb3',
+     *             boxLabel: 'Single 3'
+     *         }, {
+     *             name: 'cbGroup',
+     *             boxLabel: 'Grouped 1'
+     *             inputValue: 'value1'
+     *         }, {
+     *             name: 'cbGroup',
+     *             boxLabel: 'Grouped 2'
+     *             inputValue: 'value2'
+     *         }, {
+     *             name: 'cbGroup',
+     *             boxLabel: 'Grouped 3'
+     *             inputValue: 'value3'
+     *         }]
+     *     });
+     *
+     *     myCheckboxGroup.setValue({
+     *         cb1: true,
+     *         cb3: false,
+     *         cbGroup: ['value1', 'value3']
+     *     });
+     *
+     * The above code will cause the checkbox named 'cb1' to be checked, as well as the first and third checkboxes named
+     * 'cbGroup'. The other three checkboxes will be unchecked.
+     *
      * @param {Object} value The mapping of checkbox names to values.
      * @return {Ext.form.CheckboxGroup} this
      */
@@ -338,15 +341,17 @@ myCheckboxGroup.setValue({
 
 
 <span id='Ext-form-CheckboxGroup-method-getValue'>    /**
-</span>     * &lt;p&gt;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
-     * {@link Ext.form.field.Checkbox#inputValue inputValue} of that checkbox. If there are multiple checked checkboxes
-     * with that name, the value of that pair will be an Array of the selected inputValues.&lt;/p&gt;
-     * &lt;p&gt;The object format returned from this method can also be passed directly to the {@link #setValue} method.&lt;/p&gt;
-     * &lt;p&gt;NOTE: In Ext 3, this method returned an array of Checkbox components; this was changed to make it more
-     * consistent with other field components and with the {@link #setValue} argument signature. If you need the old
-     * behavior in Ext 4+, use the {@link #getChecked} method instead.&lt;/p&gt;
+</span>     * 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 {@link Ext.form.field.Checkbox#inputValue
+     * inputValue} of that checkbox. If there are multiple checked checkboxes with that name, the value of that pair
+     * will be an Array of the selected inputValues.
+     *
+     * The object format returned from this method can also be passed directly to the {@link #setValue} method.
+     *
+     * NOTE: In Ext 3, this method returned an array of Checkbox components; this was changed to make it more consistent
+     * with other field components and with the {@link #setValue} argument signature. If you need the old behavior in
+     * Ext 4+, use the {@link #getChecked} method instead.
      */
     getValue: function() {
         var values = {};