Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / examples / grid / array-grid.html
1 <html>
2 <head>
3     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4     <title>Stateful Array 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     <link rel="stylesheet" type="text/css" href="grid-examples.css" />
15
16     <style type=text/css>
17         /* style rows on mouseover */
18         .x-grid3-row-over .x-grid3-cell-inner {
19             font-weight: bold;
20         }
21     </style>
22
23     <!-- ** Javascript ** -->
24     <!-- ExtJS library: base/adapter -->
25     <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
26
27     <!-- ExtJS library: all widgets -->
28     <script type="text/javascript" src="../../ext-all.js"></script>
29
30     <!-- overrides to base library -->
31
32     <!-- page specific -->
33     <script type="text/javascript" src="array-grid.js"></script>
34
35 </head>
36 <body>
37     <h1>Stateful Array Grid Example</h1>
38     <p>This example shows how to create a grid from Array data.</p>
39     <p>The grid is stateful so you can move or hide columns, reload the page, and come
40     back to the grid in the same state you left it in.</p>
41     <p>Note that the js is not minified so it is readable. See <a href="array-grid.js">array-grid.js</a>.</p>
42     
43     <div id="grid-example"></div>
44 </body>
45 </html>