blob: 2e8de045617fc66e2dc5ef2676e6f2038827301e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<com:TContent ID="body">
<h1>TRangeValidator Samples</h1>
<p><strong>Note:</strong> TRangeValidator will start
to validate only if both inputs are not empty.</p>
<table class="sampletable">
<tr>
<td class="samplenote">
Range validator with default settings:
</td>
<td class="sampleaction">
<com:TTextBox ID="TextBox1" Text="a1" />
<com:TRangeValidator
ControlToValidate="TextBox1"
ValidationGroup="Group1"
MinValue="aaa"
MaxValue="zzz"
Text="Input must be between 'aaa' and 'zzz'." />
<com:TButton Text="Submit" ValidationGroup="Group1" />
</td>
</tr>
<tr>
<td class="samplenote">
Range validator with client-side validation disabled:
</td>
<td class="sampleaction">
<com:TTextBox ID="TextBox2" Text="11"/>
<com:TRangeValidator
ValidationGroup="Group2"
EnableClientScript="false"
ControlToValidate="TextBox2"
DataType="Integer"
MinValue="100"
MaxValue="999"
Text="Input must be between 100 and 999." />
<com:TButton Text="Submit" ValidationGroup="Group2" />
</td>
</tr>
</table>
</com:TContent>
|