X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Boolean.html diff --git a/docs/source/Boolean.html b/docs/source/Boolean.html index d06a33b0..b80c1512 100644 --- a/docs/source/Boolean.html +++ b/docs/source/Boolean.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.grid.column.Boolean
  * @extends Ext.grid.column.Column
  * <p>A Column definition class which renders boolean data fields.  See the {@link Ext.grid.column.Column#xtype xtype}
@@ -44,28 +61,26 @@
  *         width: 400,
  *         renderTo: Ext.getBody()
  *     });
- * 
- * @xtype booleancolumn
  */
 Ext.define('Ext.grid.column.Boolean', {
     extend: 'Ext.grid.column.Column',
     alias: ['widget.booleancolumn'],
     alternateClassName: 'Ext.grid.BooleanColumn',
 
-    /**
+    /**
      * @cfg {String} trueText
      * The string returned by the renderer when the column value is not falsey (defaults to <tt>'true'</tt>).
      */
     trueText: 'true',
 
-    /**
+    /**
      * @cfg {String} falseText
      * The string returned by the renderer when the column value is falsey (but not undefined) (defaults to
      * <tt>'false'</tt>).
      */
     falseText: 'false',
 
-    /**
+    /**
      * @cfg {String} undefinedText
      * The string returned by the renderer when the column value is undefined (defaults to <tt>'&#160;'</tt>).
      */
@@ -87,4 +102,6 @@ Ext.define('Ext.grid.column.Boolean', {
             return trueText;
         };
     }
-});
\ No newline at end of file +});
+ +