Upgrade to ExtJS 3.3.0 - Released 10/06/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
22         /* style for the "buy" ActionColumn icon */
23         .x-action-col-cell img.buy-col {
24             height: 16px;
25             width: 16px;
26             background-image: url(../shared/icons/fam/accept.png);
27         }
28
29         /* style for the "alert" ActionColumn icon */
30         .x-action-col-cell img.alert-col {
31             height: 16px;
32             width: 16px;
33             background-image: url(../shared/icons/fam/error.png);
34         }
35
36     </style>
37
38     <!-- ** Javascript ** -->
39     <!-- ExtJS library: base/adapter -->
40     <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
41
42     <!-- ExtJS library: all widgets -->
43     <script type="text/javascript" src="../../ext-all.js"></script>
44
45     <!-- overrides to base library -->
46
47     <!-- page specific -->
48     <script type="text/javascript" src="array-grid.js"></script>
49
50 </head>
51 <body>
52     <h1>Stateful Array Grid Example</h1>
53     <p>This example shows how to create a grid from Array data.</p>
54     <p>The grid is stateful so you can move or hide columns, reload the page, and come
55     back to the grid in the same state you left it in.</p>
56     <p>Note that the js is not minified so it is readable. See <a href="array-grid.js">array-grid.js</a>.</p>
57     
58     <div id="grid-example"></div>
59 </body>
60 </html>