summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TRadioButton/Home.page
blob: d5741d1c85e0eb89ec383ee896aaed198dddceef (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<com:TContent ID="body">

<h1>TRadioButton Samples</h1>

<table class="sampletable">

<tr><td class="samplenote">
A radiobutton with customized text alignment, color and font:
</td><td class="sampleaction">
<com:TRadioButton
	Text="radiobutton"
	TextAlign="Left"
	ForeColor="silver"
	BackColor="green"
	Font.Size="14pt"
/>
</td></tr>

<tr><td class="samplenote">
A radiobutton with label and input attributes:
</td><td class="sampleaction">
<com:TRadioButton
	Text="click me"
	InputAttributes.value="value"
	LabelAttributes.style="color:red"
/>
</td></tr>

<tr><td class="samplenote">
An auto postback radiobutton:
</td><td class="sampleaction">
<com:TRadioButton
	AutoPostBack="true"
	Text="click me"
	OnCheckedChanged="radiobuttonClicked"
	/>
</td></tr>

<tr><td class="samplenote">
A radiobutton causing validation on a textbox:
</td><td class="sampleaction">
<com:TTextBox ID="TextBox" />
<com:TRequiredFieldValidator
	ControlToValidate="TextBox"
	Display="Dynamic"
	ErrorMessage="input required in the textbox"
	ValidationGroup="Group"
	/>
<com:TRadioButton
	Text="submit"
	AutoPostBack="true"
	ValidationGroup="Group"
	/>
</td></tr>

<tr><td class="samplenote">
A radiobutton validated by a required field validator:
</td><td class="sampleaction">
<com:TRadioButton
	ID="RadioButton"
	Text="Consent"
	ValidationGroup="Group2"
	/>
<com:TButton Text="Submit" ValidationGroup="Group2" />
<com:TRequiredFieldValidator
	ControlToValidate="RadioButton"
	Display="Dynamic"
	ErrorMessage="You must consent."
	ValidationGroup="Group2"
	/>
</td></tr>

<tr><td class="samplenote">
A radiobutton group:
</td><td class="sampleaction">
<com:TRadioButton
	ID="Radio1"
	GroupName="RadioGroup"
	Text="Option 1"
	/>
<com:TRadioButton
	ID="Radio2"
	GroupName="RadioGroup"
	Text="Option 2"
	/>
<com:TRadioButton
	ID="Radio3"
	GroupName="RadioGroup"
	Text="Option 3"
	/>
<com:TRadioButton
	ID="Radio4"
	Text="Option 4 (in a different group)"
	/>
<br/>
<com:TButton Text="Submit" OnClick="selectRadioButton" />
<com:TLabel ID="Result" />
</td></tr>

</table>

</com:TContent>