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>TRepeater Sample 1</h1>
4
 
5
<com:TRepeater ID="Repeater" EnableViewState="false">
6
 
7
<prop:HeaderTemplate>
8
<table cellpadding="2">
9
<tr style="color:white;background-color:black">
10
  <th>ID</th>
11
  <th>Name</th>
12
  <th>Quantity</th>
13
  <th>Price</th>
14
  <th>Imported</th>
15
</tr>
16
</prop:HeaderTemplate>
17
 
18
<prop:ItemTemplate>
19
<tr style="background-color:#BFCFFF">
20
<td><%#$this->Data['id']%></td>
21
<td><%#$this->Data['name']%></td>
22
<td><%#$this->Data['quantity']%></td>
23
<td><%#$this->Data['price']%></td>
24
<td><%#$this->Data['imported']?'Yes':'No'%></td>
25
</tr>
26
</prop:ItemTemplate>
27
 
28
<prop:AlternatingItemTemplate>
29
<tr style="background-color:#E6ECFF">
30
<td><%#$this->Data['id']%></td>
31
<td><%#$this->Data['name']%></td>
32
<td><%#$this->Data['quantity']%></td>
33
<td><%#$this->Data['price']%></td>
34
<td><%#$this->Data['imported']?'Yes':'No'%></td>
35
</tr>
36
</prop:AlternatingItemTemplate>
37
 
38
<prop:FooterTemplate>
39
<tr style="color:white;background-color:black;text-align:center;">
40
<td colspan="5">Computer Parts Inventory</td>
41
</tr>
42
</table>
43
</prop:FooterTemplate>
44
 
45
</com:TRepeater>
46
 
47
<div class="last-modified">$Id: Sample1.page 1688 2007-02-09 22:48:31Z xue $</div></com:TContent>