source: trunk/web/addons/job_monarch/lib/extjs/examples/history/history.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.2 KB
Line 
1<html>
2<head>
3    <title>History Example</title>
4    <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css"/>
5
6    <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
7    <script type="text/javascript" src="../../ext-all.js"></script>
8    <script type="text/javascript" src="history.js"></script>
9
10    <!-- Common Styles for the examples -->
11    <link rel="stylesheet" type="text/css" href="../shared/examples.css"/>
12</head>
13<body>
14<script type="text/javascript" src="../shared/examples.js"></script>
15
16<h1>History Example</h1>
17
18<p>This is a simple implmenetation of the <tt>Ext.History</tt> component for managing browser back/forward navigation within a single page.</p>
19
20<p>It demonstrates managing history for multiple components within the page. Simply change tabs and use the browser Back
21and Forward buttons to navigate them.</p>
22
23<p>The js is not minified so it is readable. See <a href="history.js">history.js</a>.</p>
24
25<!-- Fields required for history management -->
26<form id="history-form" class="x-hidden">
27    <input type="hidden" id="x-history-field" />
28    <iframe id="x-history-frame"></iframe>
29</form>
30
31</body>
32</html>
Note: See TracBrowser for help on using the repository browser.