source: trunk/web/addons/job_monarch/lib/extjs/examples/grid/totals.html @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 1.9 KB
Line 
1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
4<title>Grid3 Group Summary Plugin</title>
5
6    <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
7
8    <!-- GC -->
9        <!-- LIBS -->
10        <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
11        <!-- ENDLIBS -->
12
13    <script type="text/javascript" src="../../ext-all.js"></script>
14
15
16    <script type="text/javascript" src="GroupSummary.js"></script>
17    <script type="text/javascript" src="totals.js"></script>
18
19    <link rel="stylesheet" type="text/css" href="summary.css" />
20    <link rel="stylesheet" type="text/css" href="grid-examples.css" />
21
22    <!-- Common Styles for the examples -->
23    <link rel="stylesheet" type="text/css" href="../shared/examples.css" />
24
25    <style type="text/css">
26        .negative {
27            color: #dd0000;
28        }
29        .positive {
30            color: green;
31        }
32        .x-grid3-cell-inner {
33            font-family:"segoe ui",tahoma, arial, sans-serif;
34        }
35        .x-grid-group-hd div {
36            font-family:"segoe ui",tahoma, arial, sans-serif;
37        }
38        .x-grid3-hd-inner {
39            font-family:"segoe ui",tahoma, arial, sans-serif;
40            font-size:12px;
41        }
42        .x-grid3-body .x-grid3-td-cost {
43            background-color:#f1f2f4;
44        }
45        .x-grid3-summary-row .x-grid3-td-cost {
46            background-color:#e1e2e4;
47        }
48        .icon-grid {
49            background-image:url(../shared/icons/fam/grid.png) !important;
50        }
51        .x-grid3-dirty-cell {
52            background-image:none;
53        }
54    </style>
55</head>
56<body>
57<script type="text/javascript" src="../shared/examples.js"></script><!-- EXAMPLES -->
58<h1>Group Summary Plugin</h1>
59<p>Note that the js is not minified so it is readable. See <a href="totals.js">totals.js</a>.</p>
60
61</body>
62</html>
Note: See TracBrowser for help on using the repository browser.