X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/examples/grid/custom-grid.js diff --git a/examples/grid/custom-grid.js b/examples/grid/custom-grid.js deleted file mode 100644 index 8448cd6b..00000000 --- a/examples/grid/custom-grid.js +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Ext JS Library 2.2.1 - * Copyright(c) 2006-2009, Ext JS, LLC. - * licensing@extjs.com - * - * http://extjs.com/license - */ - -Ext.onReady(function(){ - var propsGrid = new Ext.grid.PropertyGrid({ - el:'props-grid', - nameText: 'Properties Grid', - width:300, - autoHeight:true, - viewConfig : { - forceFit:true, - scrollOffset:2 // the grid will never have scrollbars - } - }); - - propsGrid.render(); - - propsGrid.setSource({ - "(name)": "Properties Grid", - "grouping": false, - "autoFitColumns": true, - "productionQuality": false, - "created": new Date(Date.parse('10/15/2006')), - "tested": false, - "version": .01, - "borderWidth": 1 - }); -}); \ No newline at end of file