Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / examples / grid / totals-hybrid.html
1 <html>
2 <head>
3     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4     <title>Custom Hybrid Summary Plugin 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     <link rel="stylesheet" type="text/css" href="../ux/css/GroupSummary.css" />
12
13     <!-- page specific -->
14     <link rel="stylesheet" type="text/css" href="../shared/examples.css" />
15     <link rel="stylesheet" type="text/css" href="grid-examples.css" />
16
17     <style type="text/css">
18         .x-grid3-cell-inner {
19             font-family:"segoe ui",tahoma, arial, sans-serif;
20         }
21         .x-grid-group-hd div {
22             font-family:"segoe ui",tahoma, arial, sans-serif;
23         }
24         .x-grid3-hd-inner {
25             font-family:"segoe ui",tahoma, arial, sans-serif;
26             font-size:12px;
27         }
28         .x-grid3-body .x-grid3-td-cost {
29             background-color:#f1f2f4;
30         }
31         .x-grid3-summary-row .x-grid3-td-cost {
32             background-color:#e1e2e4;
33         }
34         .icon-grid {
35             background-image:url(../shared/icons/fam/grid.png) !important;
36         }
37         .x-grid3-dirty-cell {
38             background-image:none;
39         }
40     </style>
41
42     <!-- ** Javascript ** -->
43     <!-- ExtJS library: base/adapter -->
44     <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
45
46     <!-- ExtJS library: all widgets -->
47     <script type="text/javascript" src="../../ext-all.js"></script>
48
49     <!-- overrides to base library -->
50
51     <!-- extensions -->
52     <script type="text/javascript" src="../ux/GroupSummary.js"></script>
53
54     <!-- page specific -->
55     <script type="text/javascript" src="totals-hybrid.js"></script>
56
57 </head>
58 <body>
59     <h1>Custom Hybrid Summary Plugin Example</h1>
60     <p>This example demonstrates the use of the
61     <a href="../ux/GroupSummary.js">Ext.ux.grid.HybridSummary</a> class which extends the 
62     <a href="../ux/GroupSummary.js">Ext.ux.grid.GroupSummary</a> class to use remote data. 
63     <p>Note that the js is not minified so it is readable. See <a href="totals-hybrid.js">totals-hybrid.js</a>.</p>
64 </body>
65 </html>