diff options
author | wei <> | 2007-04-02 06:19:55 +0000 |
---|---|---|
committer | wei <> | 2007-04-02 06:19:55 +0000 |
commit | 1ba083b9bf77b334b773b84d4d9e5f44319d17a2 (patch) | |
tree | ab9b36010b61f22019bb99270b3d4c2aa7381ab7 /tests/FunctionalTests/tickets/protected/pages/Ticket585.page | |
parent | 183b4fefb355d0c607ea4b7cc270035bcc1ffd9e (diff) |
Fixed #585, #586
Diffstat (limited to 'tests/FunctionalTests/tickets/protected/pages/Ticket585.page')
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket585.page | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket585.page b/tests/FunctionalTests/tickets/protected/pages/Ticket585.page new file mode 100644 index 00000000..f5e26f24 --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket585.page @@ -0,0 +1,19 @@ +<com:TContent ID="Content">
+
+<com:TDatePicker id="test" />
+<com:TActiveCustomValidator
+ ID="validator1"
+ ControlToValidate="test"
+ OnServerValidate="ChkDate"
+ ErrorMessage="*">
+ <prop:ClientSide
+ OnValidationError="$('error').innerHTML='Error'"
+ OnValidationSuccess="$('error').innerHTML='Success'"
+ ObserveChanges="false"
+
+ />
+</com:TActiveCustomValidator>
+<span id="error"></span>
+<com:TButton ID="button1" Text="ok"/>
+
+</com:TContent>
\ No newline at end of file |