summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page
diff options
context:
space:
mode:
authorwei <>2007-01-04 11:23:26 +0000
committerwei <>2007-01-04 11:23:26 +0000
commitdd028bec3822d1d9c28c35d599d687e038c7705f (patch)
treef3d2fb7f95073ea481a4dec86f0f0d30c7fe3588 /tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page
parentcac90ea6547fe194ab6ab101dfe11a0b751823ca (diff)
Add chat demo and tutorial.
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page')
-rw-r--r--tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page b/tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page
new file mode 100644
index 00000000..7de9c6ab
--- /dev/null
+++ b/tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page
@@ -0,0 +1,30 @@
+<com:TForm>
+
+ <com:TRequiredFieldValidator
+ ControlToValidate="rad_button_list"
+ Text="You must click one"
+ Display="Dynamic"
+ ValidationGroup="Group"
+ />
+ <br />
+ <com:TActiveRadioButtonList
+ ID="rad_button_list"
+ OnCallback="radChange">
+ <com:TListItem Value="yes" Text="Yes" />
+ <com:TListItem Value="no" Text="No" />
+ <com:TListItem Value="whynot" Text="Why not?" />
+ </com:TActiveRadioButtonList>
+ <br />
+ <com:TActiveLabel
+ ID="label"
+ Text="Choice : " />
+ <br /><br /><br />
+ <com:TActiveButton
+ ID="action_button"
+ Text="action"
+ OnCallback="action"
+ ValidationGroup="Group" />
+
+
+<com:TJavascriptLogger />
+</com:TForm> \ No newline at end of file