blob: 45505ad04a37740bae065432f59699ad75364066 [file] [log] [blame]
<html xmlns:wicket>
<head>
<title>Wicket Examples - displaytag</title>
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="stylesheet" href="displaytag/css/displaytag.css" type="text/css" media="screen, print" />
</head>
<body>
<span wicket:id="mainNavigation"/>
<h2><wicket:link><a href="DisplaytagIndex.html">Example</a></wicket:link> &gt; Implicit objects created by table</h2>
<br/>
Implicit data like e.g. row number
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>static value</th>
<th>row number</th>
<th>modell.getMoney()</th>
</tr>
</thead>
<tbody>
<tr wicket:id="rows" class="even">
<td><span wicket:id="id">Test ID</span></td>
<td><span wicket:id="name">Test Name</span></td>
<td>static</td>
<td><span wicket:id="rowNumber">Test row number</span></td>
<td><span wicket:id="money">Test money</span></td>
</tr>
<wicket:remove>
<tr class="odd">
<td>Test ID</td>
<td>Test Name</td>
<td>Test Email</td>
<td>Test Status</td>
<td>Test Comments</td>
</tr>
</wicket:remove>
</tbody>
</table>
</body>
</html>