3 <title>Property Grid</title>
4 <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
5 <link rel="stylesheet" type="text/css" href="../shared/example.css" />
6 <script type="text/javascript" src="../../bootstrap.js"></script>
7 <script type="text/javascript">
10 Ext.onReady(function() {
11 // simulate updating the grid data via a button click
13 renderTo: 'button-container',
14 text: 'Update source',
17 '(name)': 'Property Grid',
20 productionQuality: true,
29 var propsGrid = Ext.create('Ext.grid.property.Grid', {
31 renderTo: 'grid-container',
34 borderWidth: 'Border Width'
37 "(name)": "Properties Grid",
39 "autoFitColumns": true,
40 "productionQuality": false,
41 "created": Ext.Date.parse('10/15/2006', 'm/d/Y'),
51 <h1>Property Grid Example</h1>
52 <p>This example shows how to create a property grid from an object.</p>
53 <p>Note that the js is not minified so it is readable. View the source of this page to see it.</p>
55 <div id="button-container"></div>
57 <div id="grid-container"></div>