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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title>Prado Client-Side CompareValidator Tests</title>
<!-- base files -->
<script type="text/javascript" src="../../base.js"></script>
<script type="text/javascript" src="../../dom.js"></script>
<script type="text/javascript" src="../prado/validation.js"></script>
<script type="text/javascript" src="../prado/validators.js"></script>
<style type="text/css">
/*<![CDATA[*/
.message
{
color: red;
}
.required, .required1, .required2
{
border: 1px solid red;
}
/*]]>*/
</style>
</head>
<body>
<h1>Prado Client-Side CompareValidator Tests</h1>
<form id="form1" action="#">
<!-- group 1 -->
<div>
<div>
<input type="text" id="text1" name="text1" />
<input type="text" id="text2" name="text2" />
<span id="validator1" class="message" style="display:none">Must match</span>
</div>
<div>
<input type="text" id="text3" name="text3" />
<span id="validator2" class="message" style="display:none">Must equal "me!"</span>
</div>
<div>
<input type="text" id="text4" name="text4" />
<span id="validator3" class="message" style="display:none">Must be a date (d/m/Y)</span>
</div>
<input type="submit" value="Test" id="submit1" />
</div>
<script type="text/javascript">
<!--
/*]]>*/
if(typeof(Prado) != "undefined" && typeof(Prado.Validation) != "undefined")
{
Prado.Validation.AddForm("form1");
var val1 = {id : "validator1",
controltovalidate : "text1",
errormessage : "*",
display : "Dynamic",
controlcssclass : "required",
controlhookup : "text2"};
new Prado.Validation(Prado.Validation.TCompareValidator, val1);
var val1 = {id : "validator2",
controltovalidate : "text3",
errormessage : "*",
display : "Dynamic",
controlcssclass : "required",
valuetocompare : "me!"};
new Prado.Validation(Prado.Validation.TCompareValidator, val1);
var val1 = {id : "validator3",
controltovalidate : "text4",
errormessage : "*",
display : "Dynamic",
controlcssclass : "required",
operator : "DataTypeCheck",
type : "Date",
dateformat : "%d/%m/%Y"};
new Prado.Validation(Prado.Validation.TCompareValidator, val1);
Prado.Validation.AddTarget("submit1");
}
/*]]>*/
//-->
</script>
</form>
</body>
</html>
|