summaryrefslogtreecommitdiff
path: root/framework/Web/Javascripts/tests/CustomValidator.html
diff options
context:
space:
mode:
authorwei <>2006-01-09 03:40:59 +0000
committerwei <>2006-01-09 03:40:59 +0000
commit9c9a2d731fea9679f65904a3a6b72dd78b4253a4 (patch)
tree1d81a12a7a79e74e98218d01c6278a81f0996f5d /framework/Web/Javascripts/tests/CustomValidator.html
parent10420d2bcde1a7437b58175f417170b2d6d93e50 (diff)
Update library
Diffstat (limited to 'framework/Web/Javascripts/tests/CustomValidator.html')
-rw-r--r--framework/Web/Javascripts/tests/CustomValidator.html74
1 files changed, 0 insertions, 74 deletions
diff --git a/framework/Web/Javascripts/tests/CustomValidator.html b/framework/Web/Javascripts/tests/CustomValidator.html
deleted file mode 100644
index 34303781..00000000
--- a/framework/Web/Javascripts/tests/CustomValidator.html
+++ /dev/null
@@ -1,74 +0,0 @@
-<!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 CustomValidator 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 CustomValidator Tests</h1>
-
-<form id="form1" action="#">
-
-<!-- group 1 -->
-<div>
- <input type="text" id="text1" name="text1" />
- <span id="validator1" class="message" style="display:none">*</span>
- <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 : "required2",
- clientvalidationfunction : "CustomValidation"};
- new Prado.Validation(Prado.Validation.TCustomValidator, val1);
- Prado.Validation.AddTarget("submit1");
- }
-
- function CustomValidation(validator, value)
- {
- //call a custom callback function
- setTimeout(callback.bind(validator), 500);
- return false;
- }
-
- function callback()
- {
- this.setValid(true);
- }
- /*]]>*/
- //-->
- </script>
-</form>
-
- </body>
-</html>
-