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