13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Advanced VType Examples</title>
 
    <!-- ExtJS -->
    <script type="text/javascript" src="../../examples/shared/include-ext.js"></script>
    <script type="text/javascript" src="../../examples/shared/options-toolbar.js"></script>
 
    <!-- Shared -->
    <link rel="stylesheet" type="text/css" href="../shared/example.css" />
 
    <!-- GC -->
 
 
    <!-- Example -->
    <script type="text/javascript" src="adv-vtypes.js"></script>
    <style type="text/css">
        #dr, #pw {
            margin-bottom: 30px;
        }
    </style>
</head>
 
<body>
    <h1>Advanced Validation Examples Using VTypes</h1>
 
    <div id="dr">
        <p>The first example shows two date fields acting as a date range.  Selecting an initial
        date sets the minimum value for the end field.  Selecting an ending date sets a maximum
        value for the start field.</p>
    </div>
 
    <div id="pw">
        <p>This second example shows a password verification, the second value must be equivalent
        to the first to validate.</p>
    </div>
 
    <p>The js is not minified so it is readable. See <a href="adv-vtypes.js">adv-vtypes.js</a>.</p>
</body>
</html>