blob: 8d5cb24df81d65696b90e7561f5a5bd0527b2def (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<com:TContent ID="body">
<!-- $Id: Home.page 1405 2006-09-10 01:03:56Z wei $ -->
<h1>TActiveCustomValidator Samples (AJAX)</h1>
<table class="sampletable">
<tr><td class="samplenote">
Custom validator using callbacks:
</td><td class="sampleaction">
<com:TTextBox ID="textbox1" />
<com:TActiveCustomValidator
ID="validator1"
ControlToValidate="textbox1"
ErrorMessage="Please enter 'Prado'"
OnServerValidate="validator1_onvalidate" />
<com:TButton ID="button1" Text="Submit!" />
</td></tr>
</table>
<com:TJavascriptLogger />
</com:TContent>
|