diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2014-02-10 15:29:09 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2014-02-10 15:29:09 +0100 |
commit | 031d20c405b922808f4bdf2997f964880b33ab66 (patch) | |
tree | 7fbda08ea61c9948db6b6fd1dd6db9a13370da4e /tests/FunctionalTests/validators/protected/pages | |
parent | f35d43399a9ce03f08ffa326812bc5ed6764ef9e (diff) |
More tests porting
Diffstat (limited to 'tests/FunctionalTests/validators/protected/pages')
-rwxr-xr-x | tests/FunctionalTests/validators/protected/pages/CustomValidator.page | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FunctionalTests/validators/protected/pages/CustomValidator.page b/tests/FunctionalTests/validators/protected/pages/CustomValidator.page index 2d0d490b..47238e48 100755 --- a/tests/FunctionalTests/validators/protected/pages/CustomValidator.page +++ b/tests/FunctionalTests/validators/protected/pages/CustomValidator.page @@ -2,7 +2,7 @@ <h1>Prado CustomValidator Tests</h1>
<script type="text/javascript">
-var MyCustomValidator =
+var MyCustomValidator =
{
validate : function(sender, value)
{
@@ -17,7 +17,7 @@ var MyCustomValidator = ControlToValidate="text1"
ErrorMessage="Enter 'Prado'"
ControlCssClass="required"
- ClientValidationFunction="MyCustomValidator.validate"
+ ClientValidationFunction="MyCustomValidator.validate"
OnServerValidate="CustomValidation"
/>
<com:TButton ID="submit1" Text="Test" />
|