X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/column-tree.html diff --git a/docs/source/column-tree.html b/docs/source/column-tree.html deleted file mode 100644 index c52d955d..00000000 --- a/docs/source/column-tree.html +++ /dev/null @@ -1,44 +0,0 @@ - - - The source code - - - - -
Ext.onReady(function(){
-    var tree = new Ext.ux.tree.ColumnTree({
-        width: 550,
-        height: 300,
-        rootVisible:false,
-        autoScroll:true,
-        title: 'Example Tasks',
-        renderTo: Ext.getBody(),
-
-        columns:[{
-            header:'Task',
-            width:330,
-            dataIndex:'task'
-        },{
-            header:'Duration',
-            width:100,
-            dataIndex:'duration'
-        },{
-            header:'Assigned To',
-            width:100,
-            dataIndex:'user'
-        }],
-
-        loader: new Ext.tree.TreeLoader({
-            dataUrl:'column-data.json',
-            uiProviders:{
-                'col': Ext.ux.tree.ColumnNodeUI
-            }
-        }),
-
-        root: new Ext.tree.AsyncTreeNode({
-            text:'Tasks'
-        })
-    });
-});
- - \ No newline at end of file