summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/RadioButtonListTest.page
blob: 7de9c6ab2ab5446a01c2cffa2637a89f8c683fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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>