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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Placing checked value list items vertically on a web page

Status
Not open for further replies.

purplehenry

Programmer
Jun 24, 1999
1
CA
My database has several fields, each with value lists. These value lists are for different products and services that may be offered by the different franchised stores in the database. My question is how do I format either the CDML tag, database (value lists) or the html so that the values returned are placed vertically (such as with a hard return or delimiter).<br>
<br>
henry_j@hotmail.com
 
the answer comes in how you format your HTML.

Create a table with only one table data item in each row:
<table>
[FMP-Record]
<tr>
<td>[FMP-Field:&quot;product_name&quot;]</td>
</tr>
[/FMP-Record]
</Table>

The &quot;record&quot; tag will repeat for as many rows as the query returns.

LS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top