Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / statusbar / statusbar-demo.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5     <title>Ext.ux.StatusBar Examples</title>
6     <!-- Ext -->
7     <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
8     <script type="text/javascript" src="../../bootstrap.js"></script>
9     
10     <link rel="stylesheet" type="text/css" href="../ux/statusbar/css/statusbar.css" />
11     <link rel="stylesheet" type="text/css" href="../../examples/shared/example.css" />
12     <style>
13         body .x-panel {
14             margin-bottom:20px;
15         }
16     </style>
17     <script type="text/javascript" src="statusbar-demo.js"> </script>
18 </head>
19 <body>
20     <h1>StatusBar Examples</h1>
21     <p>Here are several examples of using and customizing the <a href="../ux/statusbar/StatusBar.js">Ext.ux.StatusBar</a> component.</p>
22     <p>Note that the js is not minified so it is readable. See <a href="statusbar-demo.js">statusbar-demo.js</a>.</p>
23
24     <h2>Basic StatusBar</h2>
25     <p>This is a simple StatusBar with a few standard Toolbar items included.</p>
26     <div id="basic"></div>
27
28     <h2>Right-Aligned StatusBar</h2>
29     <p>This is a simple StatusBar that has the status element right-aligned.  Any StatusBar items will be added in
30     exactly the same order on the left side of the bar.</p>
31     <div id="right-aligned"></div>
32
33     <h2>Status Window</h2>
34     <p>You can add a StatusBar to a window in exactly the same way.</p>
35     <div id="window" style="margin-bottom:20px;"></div>
36
37     <h2>Customizing the Look and Feel</h2>
38     <p>This is a standard StatusBar with some custom CSS styles applied and some event handling in place to
39     handle the TextArea's keypress events.  Notice that after you've stopped typing for a few seconds a
40     simulated auto-save process will begin.</p>
41     <div id="word-proc"></div>
42 </body>
43 </html>