Copy link to clipboard
Copied
Any idea why in the following code the hyperlinks are
cutting off at 20 characters? is there a way to show more?
<cfdirectory
action="list"
directory="c:/mydirectory"
recurse="true"
listinfo="name"
name="qFile"
sort = "name ASC"
/>
<cftable query = "qfile">
<cfcol header = "name:"
text = "<a href = fileDelivery.cfm?file=#name#>#name#</A>">
</cftable>
Thanks,
Phil
What do the docs for <cfcol> say about column width:
http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_c_08.html#1097607
--
Adam
Copy link to clipboard
Copied
What do the docs for <cfcol> say about column width:
http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_c_08.html#1097607
--
Adam
Copy link to clipboard
Copied
Thanks.