HTML Layout Pages and Page Templates.
The AlternatingItemTemplate tag does not require a Name attribute and it can only be specified within a Table tag. The AlternatingItemTemplate tag is optional.
None. The AlternatingItemTemplate tag does not require a Name attribute.
<GEN:Table Name=”EmployeesTable”>
<!-- table header and header row -->
<table>
<tr><td colspan=10>Header
Row</td></tr>
<!-- repeating row
template -->
<GEN:ItemTemplate>
<tr bgcolor=”white”> <--one row
shown with white background color -->
<td><GEN:FieldValue Name=”FirstName”/></td>
<td><GEN:FieldValue Name=”LastName”/></td>
<td><GEN:FieldValue Name=”Title”/></td>
<td><GEN:FieldValue Name=”Address”/></td>
<td><GEN:FieldValue Name=”City”/></td>
<td><GEN:FieldValue Name=”State”/></td>
<td><GEN:FieldValue Name=”ZipCode”/></td>
<td><GEN:FieldValue Name=”Country”/></td>
<td><GEN:FieldValue Name=”Phone”/></td>
</tr>
</GEN:ItemTemplate>
<GEN:AlternatingItemTemplate>
<tr bgcolor=”silver”> <--alternating
row shown with light gray background color -->
<td><GEN:FieldValue Name=”FirstName”/></td>
<td><GEN:FieldValue Name=”LastName”/></td>
<td><GEN:FieldValue Name=”Title”/></td>
<td><GEN:FieldValue Name=”Address”/></td>
<td><GEN:FieldValue Name=”City”/></td>
<td><GEN:FieldValue Name=”State”/></td>
<td><GEN:FieldValue Name=”ZipCode”/></td>
<td><GEN:FieldValue Name=”Country”/></td>
<td><GEN:FieldValue Name=”Phone”/></td>
</tr>
</GEN:AlternatingItemTemplate>
<!-- table footer -->
<tr><td
colspan=10>Table Footer Row</td></tr>
</table>
</GEN:Table>