Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / examples / grid / property-grid.html
1 <html>
2 <head>
3     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4     <title>Property Grid Example</title>
5
6     <!-- ** CSS ** -->
7     <!-- base library -->
8     <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
9
10     <!-- overrides to base library -->
11
12     <!-- page specific -->
13     <link rel="stylesheet" type="text/css" href="../shared/examples.css" />
14
15     <style type="text/css">
16
17     </style>
18
19     <!-- ** Javascript ** -->
20     <!-- ExtJS library: base/adapter -->
21     <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
22
23     <!-- ExtJS library: all widgets -->
24     <script type="text/javascript" src="../../ext-all.js"></script>
25
26     <!-- overrides to base library -->
27
28     <!-- extensions -->
29
30     <!-- page specific -->
31     <script type="text/javascript" src="../shared/examples.js"></script>
32     <script type="text/javascript" src="property-grid.js"></script>
33
34 </head>
35 <body>
36     <h1>Property Grid Example</h1>
37     <p>This example shows how to create a <a href="http://extjs.com/deploy/dev/docs/?class=Ext.grid.PropertyGrid">Property Grid</a>.</p>
38     <p>Note that the js is not minified so it is readable. See <a href="property-grid.js">property-grid.js</a>.</p>
39     
40     <p id="button-container"></p>
41     <div id="prop-grid"></div>
42 </body>
43 </html>