At the moment I am using Alan Jardines Data Tables, it allows me to
generate the following table:
<div class="ez-box box_pad adm_alt_pagination">
<table id="adm" class="display" style="font-size: 0.9em;">
<thead>
</thead>
<tbody>
{{for row in rows:}}
<tr>
<td>
{{=row.organization}}
</td>
<td>
{{=row.locality}}
</td>
<td>
{{=A('Add_user', _class='button',
_href=URL('adduser',args=[row.id]))}}
</td>
</tr>
{{pass}}
</tbody>
</table>
</div> <!-- ez_box -->
I wonder whether I could build the same table using web2py's SQLFORM.grid.
Kind regards,
Annet.