Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Vertical repeating region. How?

Status
Not open for further replies.

derekwit

Technical User
May 19, 2001
20
0
0
I finally discover how to get the repeat region to work but the only way it
works for me is Horizontal. I need it to be vertical in a table. Any
suggestions would be greatly appreciated.

Thanks in advance for the help...
 
Im guessing you got you code like this

<tr>
<cfoutput query="yourQuery">
<td>#yourQuery.displayItem#</td>
</cfoutput>
</tr>

change it to

<cfoutput query="yourQuery">
<tr>
<td>#yourQuery.displayItem#</td>
</tr>
</cfoutput>


Sorry if im off the mark...if I am, please pose come code...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top