summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample6.page
blob: 2cc4534f7b32154790d3d6d0ef7fefd5a75098dc (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
<com:TContent ID="body">

<h1>TDataGrid Sample 6</h1>
<h2>Custom Paging</h2>

<div style="width:500px">
<com:TDataGrid
	ID="DataGrid"
	Width="100%"
	AllowPaging="true"
	AllowCustomPaging="true"
	VirtualItemCount="19"
	PageSize="5"
	PagerStyle.Mode="Numeric"
	PagerStyle.HorizontalAlign="Right"
	CellPadding="2"
	HeaderStyle.BackColor="black"
	HeaderStyle.ForeColor="white"
	ItemStyle.BackColor="#BFCFFF"
	ItemStyle.Font.Italic="true"
	AlternatingItemStyle.BackColor="#E6ECFF"
	OnPageIndexChanged="changePage"
	/>
</div>

</com:TContent>