Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Invalid
-
unspecified
-
None
-
None
Description
Use <td>tag to determine column to show and not remove property in <tr>. This is because the hibernate domain contains many properties. It is not the good practice to list down all the remove properties.
The following sample is just show 2 column only.
<table width="100%" >
<tr t:type="grid" t:source="users" t:value="user" rowsPerPage="1">
<td> ${user.email}</td>
<td>${user.name}</td>
</tr>
</table>