blob: f88fca7e29c2e6570d6007736adc3cb66b8ec18a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<div class="portlet">
<h2 class="portlet-title">Search</h2>
<com:TPanel CssClass="portlet-content" DefaultButton="SearchButton">
Keyword
<com:TRequiredFieldValidator
ControlToValidate="Keyword"
ValidationGroup="search"
Text="...is required"
Display="Dynamic"/>
<br/>
<com:TTextBox ID="Keyword" />
<com:TLinkButton
ID="SearchButton"
Text="Search"
ValidationGroup="search"
OnClick="search" />
</com:TPanel><!-- end of portlet-content -->
</div><!-- end of portlet -->
|