summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/TInPlaceTextBoxTest.page
blob: 7010ca0fe2c23f1470a8eeca86e5264a7af3ad18 (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
<com:TForm ID="form1">

<style>
	.textbox
	{
		font-family: Arial, Helvetica, sans-serif;
		font-size: 1.2em;
		display: block;
		width: 20em;
	}

	.textbox
	{
		padding: 2px 0px 4px 2px;
		border:1px solid #eee;
	}


	input.textbox
	{
		background-color: #ffc;
	}
	.loader
	{
		 position:absolute;
		 right:0px;
		 top:0px;
		 color:white;
		 background-color:#900;
		 padding: 0.5em 1em;
	}
	input.required
	{
		border: 1px solid red;
		background-color: pink;
	}
</style>

	<h1>TInPlaceTextBox Functional Test</h1>

	<com:TInPlaceTextBox id="label1"
		OnTextChanged="label1_changed"
		EditTriggerControlID="link1"
		CssClass="textbox"
		Text="Label 1">
		<prop:ActiveControl.ClientSide
			OnLoading="Element.show('loader')"
			OnComplete="Element.hide('loader')" />
	</com:TInPlaceTextBox>

	<com:TRequiredFieldValidator
		ControlToValidate="label1"
		ControlCssClass="required"
		ErrorMessage="*" />

	<span id="loader" style="display:none;" onfocus="alert('ok')" class="loader">Loading...</span>

	<a href="#" id="link1">Edit</a>

	<com:TActiveLabel ID="status" Text="Status:" />

	<com:TJavascriptLogger />

</com:TForm>