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