summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBox/Home.page
blob: 89543ef0d708d494aad75b326f9d0461046075dc (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
<com:TContent ID="body">
<h1>TActiveCheckBox Samples (AJAX)</h1>

<table class="sampletable">

<tr><td class="samplenote">
An active checkbox with <tt>OnCallback</tt>:
</td><td class="sampleaction">
<com:TActiveCheckBox
	AutoPostBack="true"
	Text="click me"
	OnCheckedChanged="checkboxClicked"
	OnCallback="checkboxCallback"
	/>
</td></tr>

<tr><td class="samplenote">
A checkbox 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:TActiveCheckBox
	Text="submit"
	ValidationGroup="Group"
	OnCheckedChanged="checkboxClicked"
	OnCallback="checkboxCallback"
	/>
</td></tr>

<tr><td class="samplenote">
A checkbox validated by a required field validator:
</td><td class="sampleaction">
<com:TActiveCheckBox
	ID="CheckBox"
	Text="Consent"
	AutoPostBack="false"
	OnCheckedChanged="checkboxClicked"
	ValidationGroup="Group2"
	/>
<com:TActiveButton Text="Submit" ValidationGroup="Group2" />
<com:TRequiredFieldValidator
	ControlToValidate="CheckBox"
	Display="Dynamic"
	ErrorMessage="You must consent."
	ValidationGroup="Group2"
	/>
</td></tr>

<tr><td class="samplenote">
A checkbox validated by a required field validator:
</td><td class="sampleaction">
<com:TActiveCheckBox
	ID="CheckBox2"
	Text="Agree"
	Checked="true"
	OnCheckedChanged="checkboxClicked"
	ValidationGroup="Group3"
	/>
<com:TRequiredFieldValidator
	ControlToValidate="CheckBox2"
	Display="Dynamic"
	ErrorMessage="You must agree."
	ValidationGroup="Group3"
	/>
</td></tr>

</table>


</com:TContent>