source: trunk/web/addons/job_monarch/lib/extjs-30/examples/grid/property-grid.html @ 625

Last change on this file since 625 was 625, checked in by ramonb, 15 years ago

lib/extjs-30:

  • new ExtJS 3.0
File size: 1.3 KB
Line 
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>
Note: See TracBrowser for help on using the repository browser.