Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / grid / remote-group-summary-grid.html
1 <html>
2 <head>
3     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4     <title>Remote Summary Grid Example</title>
5     <!-- Ext -->
6     <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
7     <link rel="stylesheet" type="text/css" href="../shared/example.css" />
8     <script type="text/javascript" src="../../bootstrap.js"></script>
9  
10     <style type="text/css">
11     .x-grid-row-summary {
12         color:#333;
13         background: #f1f2f4;
14     }
15     .x-grid-row-summary  .x-grid-cell-inner {
16         font-weight: bold;
17         font-size: 11px;
18         padding-bottom: 4px;
19     }
20     .x-grid-hide-summary .x-grid-row-summary {
21         display:none;
22     }
23     .x-grid-row .x-grid-cell-cost {
24         background-color:#f1f2f4;
25     }
26     .x-grid-row-summary .x-grid-cell-cost {
27         background-color:#e1e2e4;
28     }
29     </style>
30     <script type="text/javascript" src="remote-group-summary-grid.js"></script>
31
32 </head>
33 <body>
34     <h1>Remote Summary Grid Example Example</h1>
35     <p>This example demonstrates the use of the GroupingSummaryFeature with server-side summary calculation (results are intentionally wrong).</p>
36     <p>Note that the js is not minified so it is readable. See <a href="remote-group-summary-grid.js">remote-group-summary-grid.js</a>.</p>
37 </body>
38 </html>