X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/docs/source/TreeGridColumns.html diff --git a/examples/docs/source/TreeGridColumns.html b/examples/docs/source/TreeGridColumns.html deleted file mode 100644 index aab3d26d..00000000 --- a/examples/docs/source/TreeGridColumns.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - The source code - - - - -
/*!
- * Ext JS Library 3.3.1
- * Copyright(c) 2006-2010 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
-(function() {
-    Ext.override(Ext.list.Column, {
-        init : function() {    
-            var types = Ext.data.Types,
-                st = this.sortType;
-                    
-            if(this.type){
-                if(Ext.isString(this.type)){
-                    this.type = Ext.data.Types[this.type.toUpperCase()] || types.AUTO;
-                }
-            }else{
-                this.type = types.AUTO;
-            }
-
-            // named sortTypes are supported, here we look them up
-            if(Ext.isString(st)){
-                this.sortType = Ext.data.SortTypes[st];
-            }else if(Ext.isEmpty(st)){
-                this.sortType = this.type.sortType;
-            }
-        }
-    });
-
-    Ext.tree.Column = Ext.extend(Ext.list.Column, {});
-    Ext.tree.NumberColumn = Ext.extend(Ext.list.NumberColumn, {});
-    Ext.tree.DateColumn = Ext.extend(Ext.list.DateColumn, {});
-    Ext.tree.BooleanColumn = Ext.extend(Ext.list.BooleanColumn, {});
-
-    Ext.reg('tgcolumn', Ext.tree.Column);
-    Ext.reg('tgnumbercolumn', Ext.tree.NumberColumn);
-    Ext.reg('tgdatecolumn', Ext.tree.DateColumn);
-    Ext.reg('tgbooleancolumn', Ext.tree.BooleanColumn);
-})();
-
- - \ No newline at end of file