blob: 8e0206da1573a1df093460614a3d7a8831f66ac0 (
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
|
<com:TContent ID="Content">
<style>
.autocomplete
{
border:1px solid #919EA9;
background-color:white;
}
.autocomplete ul, .autocomplete li
{
margin: 0;
padding: 0;
list-style: none;
font-size: 12px;
font-family: Tahoma, Arial, Helvetica, sans-serif;
color: #333;
}
ul.different
{
background-color: pink;
}
.autocomplete li
{
padding: 4px;
border-top: 1px solid #ccc;
}
.autocomplete .selected
{
background-color: #ffc;
}
</style>
This page uses ISO-8859-1 encoding.
<div>
<com:TActiveTextBox ID="T" />
<com:TActiveButton ID="CB" OnClick="changeA" Text="Perform CallBack"/>
<com:TButton ID="PB" OnClick="changeA" Text="Perform PostBack"/>
</div>
<div id="output">
<com:TActiveLabel ID="A" />
</div>
<div style="margin-top: 3em">
Manual test of AutoComplete (enter some ISO-8859-1 characters..)<br />
<com:TAutoComplete ID="AC" OnSuggest="suggest" ResultPanel.CssClass="autocomplete" />
</div>
</com:TContent>
|