blob: 8c0a0d7167f205c5349c14a32313eeb82e2e0321 (
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
 | <%@ Application.Globalization.Charset="UTF-8" %>
<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:ClientSide
			OnLoading="$('loader').show()"
			OnComplete="$('loader').hide()" />
	</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:TInPlaceTextBox 
		id="lblNewPackageTitle"
		OnTextChanged="NewPackageSubject"
		CssClass="textbox"
		Text="عنوان باکس ...">
	<prop:ClientSide
		OnFailure="alert(10)"/>
	</com:TInPlaceTextBox>
	<com:TActiveButton Text="ad" OnCallback="button_clicked" />
	<com:TJavascriptLogger />
</com:TForm>
 |