Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / examples / history / history.html
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
21 and 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>