I am having trouble figuring this out. I am sure it is not difficult but a pain nonetheless.
I am generating table rows dynamically using cfouput query="queryname"... My data list has grown and it is causing a lot of scrolling I would like to find a way to output information in multiple columns while still generating the rows dynamically. . ie
<cfoutput query="queryname">
<tr>
<td>#record# (id1)</td>
<td>#record# (id2)</td>
</tr>
</cfoutput>
However I would like the record in the next column to be the next record in the table.
Any Ideas?
I am generating table rows dynamically using cfouput query="queryname"... My data list has grown and it is causing a lot of scrolling I would like to find a way to output information in multiple columns while still generating the rows dynamically. . ie
<cfoutput query="queryname">
<tr>
<td>#record# (id1)</td>
<td>#record# (id2)</td>
</tr>
</cfoutput>
However I would like the record in the next column to be the next record in the table.
Any Ideas?