summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/ActiveCheckBoxTest.page
blob: 297cde15d7e6f0760950d21c54ac07b4a9631410 (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
<com:TContent ID="Content">
	<h1>Active CheckBox Test</h1>
	<com:TActiveCheckBox ID="checkbox1" Text="CheckBox 1" OnCallback="checkbox_requested" />
	<com:TActiveCheckBox ID="checkbox2" Text="CheckBox 2" OnCallback="checkbox_requested">
		<prop:ClientSide OnLoading="$('status').show()" OnComplete="$('status').hide()" />
	</com:TActiveCheckBox>
	<div style="margin:1em; padding:0.5em; text-align:center; border:1px solid #ccc;">
		<com:TActiveLabel ID="label1" Text="Label 1" />
	</div>
	<div style="margin:1em; padding: 1em; text-align: center">
		<com:TActiveButton id="change_text1"
			OnClick="change_checkbox1_text" Text="Change CheckBox 1 Text"/>
		<com:TActiveButton id="change_checked1"
			OnClick="change_checkbox1_checked" Text="Toggle CheckBox 1"/>

		<com:TActiveButton id="change_text2"
			OnClick="change_checkbox2_text" Text="Change CheckBox 2 Text"/>
		<com:TActiveButton id="change_checked2"
			OnClick="change_checkbox2_checked" Text="Toggle CheckBox 2"/>
	</div>
	<div id="status" style="margin:1em; padding:0.5em;
		text-align:center;
		background-color:#900;
		color:white; display: none;
		position: absolute; right: 0; top: 0">
		Loading...
	</div>
</com:TContent>