source: trunk/web/addons/job_monarch/lib/extjs-30/examples/statusbar/statusbar-demo.html @ 625

Last change on this file since 625 was 625, checked in by ramonb, 15 years ago

lib/extjs-30:

  • new ExtJS 3.0
File size: 1.9 KB
Line 
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    <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="../ux/StatusBar.js"> </script>
9
10    <link rel="stylesheet" type="text/css" href="../ux/css/StatusBar.css" />
11    <script type="text/javascript" src="statusbar-demo.js"> </script>
12
13    <link rel="stylesheet" type="text/css" href="../../examples/shared/examples.css" />
14
15    <style>
16        body .x-panel {
17            margin-bottom:20px;
18        }
19    </style>
20</head>
21<body>
22    <h1>StatusBar Examples</h1>
23    <p>Here are several examples of using and customizing the Ext.ux.StatusBar component.</p>
24    <p>Note that the js is not minified so it is readable. See <a href="statusbar-demo.js">statusbar-demo.js</a>.</p>
25
26    <h2>Basic StatusBar</h2>
27    <p>This is a simple StatusBar with a few standard Toolbar items included.</p>
28    <div id="basic"></div>
29    <p>
30
31    <h2>Right-Aligned StatusBar</h2>
32    <p>This is a simple StatusBar that has the status element right-aligned.  Any StatusBar items will be added in
33    exactly the same order on the left side of the bar.</p>
34    <div id="right-aligned"></div>
35
36    <h2>Status Window</h2>
37    <p>You can add a StatusBar to a window in exactly the same way.</p>
38    <div id="window" style="margin-bottom:20px;"></div>
39
40    <h2>Customizing the Look and Feel</h2>
41    <p>This is a standard StatusBar with some custom CSS styles applied and some event handling in place to
42    handle the TextArea's keypress events.  Notice that after you've stopped typing for a few seconds a
43    simulated auto-save process will begin.</p>
44    <div id="word-proc"></div>
45</body>
46</html>
Note: See TracBrowser for help on using the repository browser.