Skip to main content
Inspiring
November 24, 2009
Answered

20 char limit?

  • November 24, 2009
  • 1 reply
  • 402 views

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

    This topic has been closed for replies.
    Correct answer Adam Cameron.

    What do the docs for <cfcol> say about column width:

    http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_c_08.html#1097607

    --

    Adam

    1 reply

    Adam Cameron.Correct answer
    Inspiring
    November 24, 2009

    What do the docs for <cfcol> say about column width:

    http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_c_08.html#1097607

    --

    Adam

    Inspiring
    November 24, 2009

    Thanks.