(Quick Reference)
ui:table
Purpose
This tag renders an HTML table representing content for the user to view (as opposed to any layout hacks etc).
This tag automatically tracks row number when used with
tr tag.
Example
<ui:table>
<thead>
<tr>
<ui:th text="table.id"/>
<ui:th text="table.artist"/>
<ui:th text="table.title"/>
<ui:th text="table.genre"/>
</tr>
</thead>
<tbody>
<g:each in="${1..10}" var="i">
<ui:tr>
<td>${i.encodeAsHTML()}</td>
<td>Farmers Market</td>
<td>Slav To Rhythm</td>
<td>Jazz</td>
</ui:tr>
</g:each>
<ui:tr>
<td colspan="4">This final row is ${row}</td>
</ui:tr>
</tbody>
</ui:table>
Attributes
All attributes are passed through.