blob: e1a2cb936725214c726b574738cf27f49b950458 (
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
|
<com:TContent ID="Content">
<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:TContent>
|