]> git.proxmox.com Git - extjs.git/blob - extjs/examples/classic/grid/simjax-paging.html
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / classic / grid / simjax-paging.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta http-equiv="X-UA-Compatible" content="IE=edge">
5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
7 <title>SimPaging Grid Example</title>
8
9 <link rel="stylesheet" type="text/css" href="../shared/examples.css" />
10
11 <!-- GC -->
12
13
14 <script type="text/javascript" src="../shared/include-ext.js"></script>
15 <script type="text/javascript" src="../shared/options-toolbar.js"></script>
16
17 <!--
18 This script intercepts ajax/jsonp and provides canned data in response:
19 -->
20 <script type="text/javascript" src="simjax-paging.js"></script>
21
22 <!--
23 This is the same exact script code used for the real JSONP Paging Grid Example:
24 -->
25 <script type="text/javascript" src="paging.js"></script>
26
27 <style type="text/css">
28 .x-grid-cell-topic b {
29 display: block;
30 }
31 .x-grid-cell-topic .x-grid-cell-inner {
32 white-space: normal;
33 }
34 .x-grid-cell-topic a {
35 color: #385F95;
36 text-decoration: none;
37 }
38 .x-grid-cell-topic a:hover {
39 text-decoration:underline;
40 }
41 .x-grid-cell-topic .x-grid-cell-innerf {
42 padding: 5px;
43 }
44 .x-grid-rowbody {
45 padding: 0 5px 5px 5px;
46 }
47 </style>
48 </head>
49 <body>
50 <h1>Simulated JSONP Paging Grid Example</h1>
51 <p>This page demonstrates how to use simulated JSONP by including the exact same code
52 used by the real JSONP paging grid example after the simulation layer.</p>
53 <p>Note that the js is not minified so it is readable. See <a href="simjax-paging.js">simjax-paging.js</a>
54 and the unmodified example code <a href="paging.js">paging.js</a>.</p>
55 <div id="topic-grid"></div>
56 </body>
57 </html>