blob: f5e26f24853e5dbae4a2ff512edad10c4853a92c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>
|