CFoutput group with pagination
Hi,
I've a db table with lot of records that I'd like to create pagination but with cfoutput group. I'm wondering if there is code examples or any suggestions on how would do it.
Here is a psedo code:
<table>
<thead>
<th>id</th>
<th>name</th>
<th>company</th>
</thead>
<cfoutput query="getdata" group="name">
<tr>
<td>Name: #name#</td>
</tr>
<cfoutput group="">
<tr>
<td>#id#</td>
<td>#company#</td>
</tr>
</cfoutput>
</cfoutput>
</table>
Thanks.
