summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Portlets/SearchPortlet.tpl
blob: 32cbbf1d838d7edf682d04bfa39b70472c0b0b9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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" />
<br/><br/>
<com:TLinkButton
	ID="SearchButton"
	Text="Search"
	ValidationGroup="search"
	CssClass="link-button"
	OnClick="search" />
</com:TPanel><!-- end of portlet-content -->

</div><!-- end of portlet -->