blob: bc4e84e55806859438ccc6f43ae231b9d5c51509 [file] [log] [blame]
<html xmlns:wicket="http://wicket.sourceforge.net/">
<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; Standard, creating dynamic links</h2>
<br/>
How to link cells with actions
<table>
<thead>
<tr>
<th>ID</th>
<th>Email</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr wicket:id="rows" class="even">
<td><a wicket:id="idLink"><span wicket:id="id">Test ID</span></a></td>
<td><a wicket:id="mailLink"><span wicket:id="email">Test EMail</span></a></td>
<td><a wicket:id="statusLink"><span wicket:id="status">Test Status</span></a></td>
</tr>
</tbody>
</table>
<br/>
<table>
<thead>
<tr>
<th>ID</th>
<th>Email</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr wicket:id="rows2" class="even">
<td><a wicket:id = "idLink"><span wicket:id="id">Test ID</span></a></td>
<td><span wicket:id="email">Test EMail</span></td>
<td><a wicket:id = "view">View</a> | <a wicket:id = "edit">Edit</a> | <a wicket:id = "delete">Delete</a></td>
</tr>
</tbody>
</table>
</body>
</html>