Upgrade to ExtJS 4.0.1 - Released 05/18/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         .task .x-grid-cell-inner {
12             padding-left: 15px;
13         }
14         .x-grid-row-summary {
15             color:#333;
16             background: #f1f2f4;
17         }
18         .x-grid-row-summary  .x-grid-cell-inner {
19             font-weight: bold;
20             font-size: 11px;
21             padding-bottom: 4px;
22         }
23         .x-grid-hide-summary .x-grid-row-summary {
24             display:none;
25         }
26         .x-grid-row .x-grid-cell-cost {
27             background-color:#f1f2f4;
28         }
29         .x-grid-row-summary .x-grid-cell-cost {
30             background-color:#e1e2e4;
31         }
32     </style>
33     <script type="text/javascript" src="remote-group-summary-grid.js"></script>
34
35 </head>
36 <body>
37     <h1>Remote Summary Grid Example Example</h1>
38     <p>This example demonstrates the use of the GroupingSummaryFeature with server-side summary calculation (results are intentionally wrong).</p>
39     <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>
40 </body>
41 </html>