Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / examples / statusbar / statusbar-advanced.html
1 <html>
2 <head>
3     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
4     <title>Advanced Ext.ux.StatusBar Example</title>
5     <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
6     <link rel="stylesheet" type="text/css" href="../ux/statusbar/css/statusbar.css" />
7
8     <link rel="stylesheet" type="text/css" href="../shared/examples.css" />
9
10     <style>
11         .list {
12             list-style-image:none;
13             list-style-position:outside;
14             list-style-type:square;
15             padding-left:16px;
16         }
17         .list li {
18             font-size:11px;
19             padding:3px;
20         }
21     </style>
22
23     <script type="text/javascript" src="../../adapter/ext/ext-base.js"> </script>
24     <script type="text/javascript" src="../../ext-all.js"> </script>
25
26     <script type="text/javascript" src="../ux/statusbar/StatusBar.js"> </script>
27     <script type="text/javascript" src="../ux/statusbar/ValidationStatus.js"> </script>
28
29     <script type="text/javascript" src="statusbar-advanced.js"> </script>
30 </head>
31 <body>
32     <h1>Advanced StatusBar Example</h1>
33     <p>This is an advanced example of customizing the <a href="../ux/statusbar/StatusBar.js">Ext.ux.StatusBar</a> component via a plugin.</p>
34     <p>Note that the js is not minified so it is readable. See <a href="statusbar-advanced.js">statusbar-advanced.js</a>.</p>
35
36     <h2>Customizing the StatusBar</h2>
37     <p>The <a href="../ux/statusbar/ValidationStatus.js">ValidationStatus</a> plugin hooks into the StatusBar and automatically
38     monitors the validation status of any fields in the associated FormPanel.  Items of interest:</p>
39     <ul class="list">
40         <li>The StatusBar syncs in real-time with the valid state of the form as you type</li>
41         <li>When the form is invalid, the error status message can be clicked to hide/show a custom error list</li>
42         <li>The error list items can be clicked to focus the associated fields</li>
43         <li>After submitting successfully, note that the confirmation status message will fade out after 5
44         seconds and return to the default status (this is a config option)</li>
45     </ul><br>
46
47 </body>
48 </html>