28 lines
No EOL
1.3 KiB
HTML
28 lines
No EOL
1.3 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>Ext JS PivotGrid Sample</title>
|
|
<!-- GC -->
|
|
|
|
<link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
|
|
<link rel="stylesheet" type="text/css" href="../shared/examples.css" />
|
|
|
|
<!-- ExtJS library: base/adapter -->
|
|
<script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
|
|
|
|
<!-- ExtJS library: all widgets -->
|
|
<script type="text/javascript" src="../../ext-all.js"></script>
|
|
|
|
<script type="text/javascript" src="simple.js"></script>
|
|
</head>
|
|
<body id="docbody">
|
|
<h1>Pivot Grid example</h1>
|
|
<p>This example shows how to create a Pivot Grid backed by an Ext.data.Store.</p>
|
|
<p>
|
|
In this example we are reading a set of 300 records from the server and then pivoting them around Person and Product (on the left axis)<br />
|
|
and City and Year (on the top axis). The data are combined automatically, in this case breaking down sales by product and person <br />over time.
|
|
</p>
|
|
<p><a href="simple.js">The example code</a> is not minified, so it's readable. </p>
|
|
</body>
|
|
</html> |