Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
apexman #1
Wrap it up!
I want a "real" break.
I want to place a hard line return in some coldfusion output from a dynamic
table.
Here's the code:
<div align="left" class="style5">
<table width="22" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="corpcal">#cal.People#</td>
</tr>
</table>
</div>
I think I should be using the "wrap" function, but I must be doing it wrong,
or else it behaves differently within this cfml table for some reason.
Any help would be appreciated.
apexman Guest
-
Text wrap adding a ghost Wrap???
hello, I was working on creating a clipping mask on a photo by using the pen tool and making a silo. Then I would cut the picture and paste into... -
Text No-Wrap
Using Illy CS on a brand new Dell Win XP with plenty of horsepower, I have encountered a stubborn problem. The document is set up to 8.5 x 11 in CMYK... -
Tex Wrap in CS locking up
While creating a text wrap for an imported Photoshop CS CMYK picture file AI CS locked up and would not wrap text around the object. With plenty of... -
Text wrap in CS
Greetings, While trying to use the text wrap feature in AI CS, I encountered a peculiar problem. It seems that AI will attempt the text wrap, but... -
WRAP text in <TD>
How can I wrap a long text in tag <TD> ? I see even I specify width in table or <TD>, it doesn't wrap if my text have no <BR> or any SPACES. ... -
smburc #2
Re: Wrap it up!
You should wrap your <tr> tags in an output query. The ouput query will loop
over all of the records in the query results and run all of the code between in
the CFOUTPUT tag.
Something like this:
<CFOUTPUT query="QueryName">
<tr>
<td>#People#</td>
<tr>
</CFOUPUT>
smburc Guest



Reply With Quote

