Upgrade to ExtJS 3.3.1 - Released 11/30/2010
[extjs.git] / examples / pivotgrid / countries.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="countries.js"></script>
18     
19     <style type="text/css" media="screen">
20         .expense-low {
21             background-color: #93de8b;
22         }
23         
24         .expense-high {
25             background-color: #e4765c;
26         }
27     </style>
28 </head>
29 <body id="docbody">
30     <h1>Pivot Grid example</h1>
31     <p>This example shows how to create a Pivot Grid backed by an Ext.data.Store.</p>
32     <p>
33         In this example we are reading a set of 1281 records detailing the ease of doing business in countries around the world. <br />
34         We're using a custom renderer to style each cell based on the number of days it takes to set up a business in that country.
35     </p>
36     <p><a href="countries.js">The example code</a> is not minified, so it's readable. </p>
37 </body>
38 </html>