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