Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / history / history.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4     <title>History Example</title>
5     <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css"/>
6     <link rel="stylesheet" type="text/css" href="../shared/example.css"/>
7     
8     <script type="text/javascript" src="../../bootstrap.js"></script>
9     <script type="text/javascript" src="history.js"></script>
10 </head>
11 <body>
12     <h1>History Example</h1>
13
14     <p>This is a simple implementation of the <tt>Ext.History</tt> component for managing browser back/forward navigation within a single page.</p>
15
16     <p>It demonstrates managing history for multiple components within the page. Simply change tabs and use the browser Back
17     and Forward buttons to navigate them.</p>
18
19     <p>The js is not minified so it is readable. See <a href="history.js">history.js</a>.</p>
20
21     <!-- Fields required for history management -->
22     <form id="history-form" class="x-hide-display">
23         <input type="hidden" id="x-history-field" />
24         <iframe id="x-history-frame"></iframe>
25     </form>
26 </body>
27 </html>