Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<com:TContent ID="body">
2
 
3
<h1>TDataGrid Sample 3</h1>
4
<h2>Interacting with TDataGrid</h2>
5
 
6
<com:TDataGrid
7
	Width="800px"
8
	CellPadding="2"
9
	ID="DataGrid"
10
	DataKeyField="ISBN"
11
	AutoGenerateColumns="false"
12
	HeaderStyle.BackColor="black"
13
	HeaderStyle.ForeColor="white"
14
	ItemStyle.BackColor="#BFCFFF"
15
	ItemStyle.Font.Italic="true"
16
	AlternatingItemStyle.BackColor="#E6ECFF"
17
	EditItemStyle.BackColor="lightyellow"
18
	OnItemCreated="itemCreated"
19
	OnEditCommand="editItem"
20
	OnUpdateCommand="saveItem"
21
	OnCancelCommand="cancelItem"
22
	OnDeleteCommand="deleteItem"
23
	>
24
 
25
	<com:TBoundColumn
26
		ID="BookTitleColumn"
27
		HeaderText="Book Title"
28
		HeaderStyle.Width="400px"
29
		DataField="title"
30
		/>
31
	<com:TBoundColumn
32
		ID="PublisherColumn"
33
		HeaderText="Publisher"
34
		HeaderStyle.Width="150px"
35
		DataField="publisher"
36
		/>
37
	<com:TBoundColumn
38
		ID="PriceColumn"
39
		ItemStyle.HorizontalAlign="Right"
40
		ItemStyle.Wrap="false"
41
		ItemStyle.Font.Italic="false"
42
		ItemStyle.ForeColor="green"
43
		HeaderText="Price"
44
		HeaderStyle.Width="70px"
45
		DataField="price"
46
		DataFormatString="$%.2f"
47
		/>
48
	<com:TCheckBoxColumn
49
		ID="InStockColumn"
50
		HeaderText="In-stock"
51
		DataField="instock"
52
		/>
53
	<com:TDropDownListColumn
54
		ID="RatingColumn"
55
		HeaderText="Rating"
56
		DataTextField="rating"
57
		>
58
		<prop:DataTextFormatString><img src="images/star%s.gif" alt="" /></prop:DataTextFormatString>
59
		<com:TListItem Value="1" />
60
		<com:TListItem Value="2" />
61
		<com:TListItem Value="3" />
62
		<com:TListItem Value="4" />
63
		<com:TListItem Value="5" />
64
	</com:TDropDownListColumn>
65
	<com:TEditCommandColumn
66
		HeaderText="Edit"
67
		HeaderStyle.Width="100px"
68
		UpdateText="Save"
69
		ItemStyle.HorizontalAlign="Center"
70
		ItemStyle.Font.Italic="false"
71
		/>
72
	<com:TButtonColumn
73
		ID="DeleteColumn"
74
		HeaderText="Delete"
75
		HeaderStyle.Width="50px"
76
		ItemStyle.HorizontalAlign="Center"
77
		ItemStyle.Font.Italic="false"
78
		Text="Delete"
79
		CommandName="delete"
80
		/>
81
</com:TDataGrid>
82
 
83
<div class="last-modified">$Id: Sample3.page 1650 2007-01-24 06:55:32Z wei $</div></com:TContent>