Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / src / grid / column / Date.js
index c3792d1..9871a8a 100644 (file)
@@ -1,3 +1,17 @@
+/*
+
+This file is part of Ext JS 4
+
+Copyright (c) 2011 Sencha Inc
+
+Contact:  http://www.sencha.com/contact
+
+GNU General Public License Usage
+This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
+
+If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
+
+*/
 /**
  * @class Ext.grid.column.Date
  * @extends Ext.grid.column.Column
@@ -40,8 +54,6 @@
  *         width: 450,
  *         renderTo: Ext.getBody()
  *     });
- *    
- * @xtype datecolumn
  */
 Ext.define('Ext.grid.column.Date', {
     extend: 'Ext.grid.column.Column',
@@ -51,7 +63,7 @@ Ext.define('Ext.grid.column.Date', {
 
     /**
      * @cfg {String} format
-     * A formatting string as used by {@link Date#format Date.format} to format a Date for this Column.
+     * A formatting string as used by {@link Ext.Date#format} to format a Date for this Column.
      * This defaults to the default date from {@link Ext.Date#defaultFormat} which itself my be overridden
      * in a locale file.
      */
@@ -61,4 +73,4 @@ Ext.define('Ext.grid.column.Date', {
         this.callParent(arguments);
         this.renderer = Ext.util.Format.dateRenderer(this.format);
     }
-});
\ No newline at end of file
+});