blob: a64c5c55f7227fa7994281adf7049a15f9f56dbf (
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
|
<com:TContent id="Content">
<style>
.autocomplete
{
border:1px solid #919EA9;
background-color:white;
width: 20px;
}
.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>
<p>
<com:TRequiredFieldValidator ControlToValidate="textbox"
ErrorMessage="Required" Display="Dynamic" />
<com:TTextBox id="textbox" />
</p>
<p>
<com:TRequiredFieldValidator ControlToValidate="autocomplete"
ErrorMessage="Required"Display="Dynamic" />
<com:TAutoComplete Style="width: 20em" ID="autocomplete"
OnSuggest="suggestCountries" Separator=", "
OnSuggestionSelected="suggestion_selected"
ResultPanel.CssClass="autocomplete" CausesValidation="false" />
</p>
<p>
<com:TButton OnClick="validForm" Text="Validate Form" /><br/>
<com:TLabel id="Result" />
</p>
</com:TContent>
|