summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page
diff options
context:
space:
mode:
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