summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/protected/pages/Validation/CheckBox.page
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/protected/pages/Validation/CheckBox.page')
-rw-r--r--tests/FunctionalTests/protected/pages/Validation/CheckBox.page10
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/FunctionalTests/protected/pages/Validation/CheckBox.page b/tests/FunctionalTests/protected/pages/Validation/CheckBox.page
index 42241ca7..6ed570a9 100644
--- a/tests/FunctionalTests/protected/pages/Validation/CheckBox.page
+++ b/tests/FunctionalTests/protected/pages/Validation/CheckBox.page
@@ -1,4 +1,4 @@
-<%@ Title="Basic TRequiredFieldValidator" %>
+<%@ Title="An AutoPostBack CheckBox" %>
<com:TContent ID="Content">
<com:TForm>
@@ -7,28 +7,30 @@
<com:TCheckBox
AutoPostBack="true"
Text="Without ValidationGroup"
+ ID="checkbox1"
/>
<br/>
-<! Uncomment the following and see
<com:TCheckBox
AutoPostBack="true"
Text="With ValidationGroup"
ValidationGroup="Group"
+ ID="checkbox2"
/>
<br/>
<com:TCheckBox
AutoPostBack="true"
CausesValidation="false"
Text="CausesValidation=false"
+ ID="checkbox3"
/>
<br/>
-!>
-Input: <com:TTextBox ID="TextBox" />
+Input: <com:TTextBox ID="TextBox" ID="textbox1"/>
<com:TRequiredFieldValidator
ControlToValidate="TextBox"
Display="Dynamic"
ErrorMessage="input required in the textbox"
ValidationGroup="Group"
+ ID="validator1"
/>
<br/>
<com:TJavascriptLogger />