X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Checkbox.html diff --git a/docs/source/Checkbox.html b/docs/source/Checkbox.html index 6d11c417..0dee554d 100644 --- a/docs/source/Checkbox.html +++ b/docs/source/Checkbox.html @@ -15,8 +15,8 @@ -
/**
- * @class Ext.form.field.Checkbox
+  
/**
+ * @class Ext.form.field.Checkbox
  * @extends Ext.form.field.Base
 
 Single checkbox field. Can be used as a direct replacement for traditional checkbox fields. Also serves as a
@@ -110,10 +110,6 @@ __Example usage:__
         renderTo: Ext.getBody()
     });
 
- * @constructor
- * Creates a new Checkbox
- * @param {Object} config Configuration options
- * @xtype checkboxfield
  * @docauthor Robert Dougan <rob@sencha.com>
  * @markdown
  */
@@ -303,7 +299,7 @@ Ext.define('Ext.form.field.Checkbox', {
     getSubmitValue: function() {
         var unchecked = this.uncheckedValue,
             uncheckedVal = Ext.isDefined(unchecked) ? unchecked : null;
-        return this.checked ? this.inputValue : unchecked;
+        return this.checked ? this.inputValue : uncheckedVal;
     },
 
     /**