diff options
author | wei <> | 2006-10-19 00:57:08 +0000 |
---|---|---|
committer | wei <> | 2006-10-19 00:57:08 +0000 |
commit | a36595a1470db259ce9e723f2ad13b63fd5e8eb6 (patch) | |
tree | 3633aff35a82e566d5b89dcfb3c50c284ccfc9d9 /tests/FunctionalTests/active-controls/protected | |
parent | ec1c561946e785fb34a4809b8b154e2e4f0ffb8b (diff) |
BC BREAK: Changed Validator property names:
- Validators ClientSide.OnSuccess becomes ClientSide.OnValidationSuccess,
- Validators ClientSide.OnError becomes ClientSide.OnValidationError,
- Validators OnSuccess event becomes OnValidationSuccess.
- Validators OnError event becomes OnValidationError.
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/CallbackCustomValidatorTest.page | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/CallbackCustomValidatorTest.page b/tests/FunctionalTests/active-controls/protected/pages/CallbackCustomValidatorTest.page index ae1fe3d2..a99fbf55 100644 --- a/tests/FunctionalTests/active-controls/protected/pages/CallbackCustomValidatorTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/CallbackCustomValidatorTest.page @@ -25,8 +25,8 @@ ControlCssClass="required"
OnServerValidate="validate_text1">
<prop:ClientSide
- OnError="$('status').innerHTML='Error '+(new Date())"
- OnSuccess="$('status').innerHTML='Success '+(new Date())"
+ OnValidationError="$('status').innerHTML='Error '+(new Date())"
+ OnValidationSuccess="$('status').innerHTML='Success '+(new Date())"
OnLoading="Element.show('loader')"
OnComplete="Element.hide('loader')" />
</com:TActiveCustomValidator>
|