I have a table, that is grouped by a column called "displayname".  I want to
have the repeating data in columns of 2.  Normally I would do this using
startrow and maxrows.  However inside of a nested cfoutput it appears you
cannot do that.
This is close, but it gives me the same data twice, once in each column.
<table width=485>
<cfoutput query="our_people2"  group="displayGroup">
 <tr>
  <td> <font face="verdana, helvetica" color=##737373
Size=3><i><b>#trim(displayGroup)#</b></i></font></td>
 </tr>
 <cfoutput>
 <tr>
 <cfloop index="i" from="#currentrow#" to="#evaluate('currentrow+1')#">
  <td>
   <IMG alt="" border=0 height=221
src="../images/prof/people/#trim(personPicFileLocation)#.jpg" width=178>
    <br>
    <FONT face="verdana, helvetica" color=##737373 size=3><STRONG>
    #trim(personDisplayName)#<cfif isdefined("personDegree")>,
#trim(personDegree)#</cfif>
    </strong></FONT>
   </td>
  </cfloop>
  </tr>
 </cfoutput>
 </cfoutput>
 </table>


------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to