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

<h1>TDataGrid Sample 2</h1>
<h2>Using Manually Specified Columns</h2>

<com:TDataGrid
	ID="DataGrid"
	AutoGenerateColumns="false"
	EnableViewState="false"
	HeaderStyle.BackColor="silver"
	ItemStyle.BackColor="lightblue"
	ItemStyle.Font.Italic="true"
	AlternatingItemStyle.BackColor="lightgreen">

	<com:TBoundColumn
		ItemStyle.BackColor="silver"
		HeaderText="Name"
		DataField="name"
		/>
	<com:TCheckBoxColumn
		HeaderText="Imported"
		DataField="imported" />
</com:TDataGrid>

</com:TContent>