RE: Display 3 column text *FOLLOWUP*

2002-09-25 Thread Adrian Lynch
cfset j = 1 cfloop list=#listElements# index=i cfoutput#i#/cfoutputcfif check if it j is 3, 6, 9, etc, if so, br or start a new tr cfset j = j + 1 /cfloop Ade -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 13:46 To: CF-Talk Subject:

RE: Display 3 column text *FOLLOWUP*

2002-09-25 Thread Everett, Al
-Talk Subject: RE: Display 3 column text *FOLLOWUP* cfset j = 1 cfloop list=#listElements# index=i cfoutput#i#/cfoutputcfif check if it j is 3, 6, 9, etc, if so, br or start a new tr cfset j = j + 1 /cfloop Ade -Original Message- From: FlashGuy [mailto:[EMAIL

RE: Display 3 column text *FOLLOWUP*

2002-09-25 Thread FlashGuy
OK...I added your code and now I get an error. Why? Error Diagnostic Information LIST The value cannot be converted to a string because it is not a simple value. Simple values are booleans, numbers, strings and date-time values. The error occurred while processing an element with a general

RE: Display 3 column text *FOLLOWUP*

2002-09-25 Thread FlashGuy
Hi all, I figured out me error. It's working now! Thanks for all your help. On Wed, 25 Sep 2002 09:26:53 -0400, FlashGuy wrote: OK...I added your code and now I get an error. Why? Error Diagnostic Information LIST The value cannot be converted to a string because it is not a

RE: Display 3 column text *FOLLOWUP*

2002-09-25 Thread Everett, Al
ListElement isn't a list. It's a query. Did you want cfloop list=#listElement.ColumnList# index=i ? -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 25, 2002 9:27 AM To: CF-Talk Subject: RE: Display 3 column text *FOLLOWUP* OK...I added

RE: Display 3 column text

2002-09-25 Thread Mosh Teitelbaum
Try moving the CFSET x = 1 bit in front of the CFLOOP tag. Every iteration of the loop current resets x back to 1. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: FlashGuy