Hi,
I am generating a bulleted list from a field containing comma separated values. I want to split the list in half and display it in 2 columns but am note sure how to accomplish it.
Here's what I have now:
Any Suggestions?
I am generating a bulleted list from a field containing comma separated values. I want to split the list in half and display it in 2 columns but am note sure how to accomplish it.
Here's what I have now:
Code:
<td align="left" valign="top">
<UL>
<CFLOOP index="counter" From="1" TO="#ListLen(Cust_Equipment)#">
<LI>
<font size="2" face="Tahoma">#ListGetAt(Cust_Equipment,counter)#</font>
</li>
</CFLOOP>
</UL>
</td>
Any Suggestions?