diff options
author | wei <> | 2006-02-18 23:41:16 +0000 |
---|---|---|
committer | wei <> | 2006-02-18 23:41:16 +0000 |
commit | 270282e3a26b21184a2051995cb5b9a2755b823d (patch) | |
tree | 761d82ad761996f329d63acc770fc5a0bce9d5a2 /demos/quickstart/protected/pages/Controls/Samples/TEmailAddressValidator | |
parent | f1cc3c880b564362e7f00b18326e116884879231 (diff) |
Update some javascript code.
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples/TEmailAddressValidator')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TEmailAddressValidator/Home.page | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TEmailAddressValidator/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TEmailAddressValidator/Home.page index bbeef3fd..db63a0a9 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TEmailAddressValidator/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/TEmailAddressValidator/Home.page @@ -1,6 +1,8 @@ <com:TContent ID="body">
<h1>TEmailAddressValidator Samples</h1>
+<p><strong>Note:</strong>TEmailAddressValidator will start
+to validate only if the input is not empty.</p>
<table class="sampletable">
@@ -9,7 +11,7 @@ Email address validator with default settings:
</td>
<td class="sampleaction">
-<com:TTextBox ID="TextBox1" />
+<com:TTextBox ID="TextBox1" Text="a"/>
<com:TEmailAddressValidator
ValidationGroup="Group1"
ControlToValidate="TextBox1"
@@ -23,7 +25,7 @@ Email address validator with default settings: Email address validator with client-side validation disabled:
</td>
<td class="sampleaction">
-<com:TTextBox ID="TextBox2" />
+<com:TTextBox ID="TextBox2" Text="b"/>
<com:TEmailAddressValidator
ValidationGroup="Group2"
EnableClientScript="false"
@@ -38,7 +40,7 @@ Email address validator with client-side validation disabled: Email address validator with focus-on-error enabled and dynamic display:
</td>
<td class="sampleaction">
-<com:TTextBox ID="TextBox3" />
+<com:TTextBox ID="TextBox3" Text="c"/>
<com:TEmailAddressValidator
ValidationGroup="Group3"
ControlToValidate="TextBox3"
|