summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TRangeValidator/Home.page
diff options
context:
space:
mode:
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples/TRangeValidator/Home.page')
-rw-r--r--demos/quickstart/protected/pages/Controls/Samples/TRangeValidator/Home.page45
1 files changed, 45 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TRangeValidator/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TRangeValidator/Home.page
new file mode 100644
index 00000000..2e8de045
--- /dev/null
+++ b/demos/quickstart/protected/pages/Controls/Samples/TRangeValidator/Home.page
@@ -0,0 +1,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> \ No newline at end of file