Upgrade to ExtJS 3.3.0 - Released 10/06/2010
[extjs.git] / examples / pivotgrid / simple.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html>
3 <head>
4     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5     <title>Ext JS PivotGrid Sample</title>
6     <!-- GC -->
7     
8     <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
9     <link rel="stylesheet" type="text/css" href="../shared/examples.css" />
10     
11     <!-- ExtJS library: base/adapter -->
12     <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
13
14     <!-- ExtJS library: all widgets -->
15     <script type="text/javascript" src="../../ext-all.js"></script>
16     
17     <script type="text/javascript" src="simple.js"></script>
18 </head>
19 <body id="docbody">
20     <h1>Pivot Grid example</h1>
21     <p>This example shows how to create a Pivot Grid backed by an Ext.data.Store.</p>
22     <p>
23         In this example we are reading a set of 300 records from the server and then pivoting them around Person and Product (on the left axis)<br />
24         and City and Year (on the top axis). The data are combined automatically, in this case breaking down sales by product and person <br />over time.
25     </p>
26     <p><a href="simple.js">The example code</a> is not minified, so it's readable. </p>
27 </body>
28 </html>