Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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. ...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139