new paragraph in cfdocument

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default new paragraph in cfdocument

    How do I begin new paragraph between each #form.chk# value? And between each
    value it also show ",". Can I omit that also?

    <cfdocument format="pdf" filename="C:\savefile.pdf" overwrite="yes">
    <cfdocumentsection>
    <cfif isdefined('form.chk')>
    <font size="-15"><cfoutput><td>#form.chk#</td>
    </cfoutput></font>
    </cfif>
    </cfdocumentsection>
    </cfdocument>

    sweetyp2005 Guest

  2. Similar Questions and Discussions

    1. Paragraph Styles - Next...
      InDesign CS2 I have agreed on doing a guide containing mostly Postal code - names and phone numbers. I get the text from a database in an Exel...
    2. First line in paragraph
      Though I use CSS to add space before Heading 1, I am trying to get the first line in a paragraph to line up with the top of the cell that it is in....
    3. Is it possible to specify paragraph spacing?
      Ičve got several paragraphs set in a flash text field. I want the paragraphs separated by a space (less than an extra carriage return). Is there a...
    4. Paragraph Styles
      Is there any way to copy just one Paragraph Style to another document?
    5. Form Paragraph
      I have a form paragraph that once it has more than 1975 characters in it, the submit button on the form will not work. Any ideas? Thank you in...
  3. #2

    Default Re: new paragraph in cfdocument

    Instead of <td></td> try <p></p>
    Where do you want the commas?

    Originally posted by: sweetyp2005
    How do I begin new paragraph between each #form.chk# value? And between each
    value it also show ",". Can I omit that also?

    <cfdocument format="pdf" filename="C:\savefile.pdf" overwrite="yes">
    <cfdocumentsection>
    <cfif isdefined('form.chk')>
    <font size="-15"><cfoutput><td>#form.chk#</td>
    </cfoutput></font>
    </cfif>
    </cfdocumentsection>
    </cfdocument>



    Dan Bracuk 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