Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Cfform inside HTML

    Hi

    I am getting nothing inside CFFORM. I want to bring the cfform in particular
    area in my page.

    I tried something like this:
    <table>
    <tr>
    <td colspan=2>
    <cfinclude template="topnav.inc">
    </td>
    </tr>
    <td>
    <cfinclude template="leftnav.inc">
    </td>
    <td>
    <cform form="flash">
    .......
    ....
    </cfform>
    </td>
    </tr>
    </table>

    Is there any work around or bug in CFFORM?

    Thanks in Advance

    -SN

    nsnvas Guest

  2. Similar Questions and Discussions

    1. HTML <Href Link inside a form (HTML text box)
      Hello, I am using a standard HTML Form to gather information from users and one of the elements within the form is a text box that users will paste...
    2. How to format a table inside cfform type="flash"?
      I am aware that you cannot use table HMTL tag inside <cfform type="flash>. I would like to get my data to be displayed in a tablular form! How do...
    3. use 'disabled' in html cfform
      is there an issue using the 'disabled' attribute with cfform format=html? if disabled appears in the tag the control is disabled....regardless of...
    4. flash cfgrid in html cfform bug
      I have a cfform in html format on my page, I want a cfgrid in flashformat in that form. No problem thus far. When I submit the form, and dump the...
    5. CFFORM & TABNAIVAGTOR inside of a table <table> tag
      Has anybody else had a problem putting a CFFORM with TABNAVIGATOR inside of a table? My tab system works fine until I put it inside a table which is...
  3. #2

    Default Re: Cfform inside HTML

    I have encountered a similar problem with flashforms, specially when I
    position them inside CSS

    The workaround I'm using is by giving the Flashform "Placeholder",
    exact dimensions (e.g.) <div style="width:400px; height:400px">Insert
    Flash Form Here</div>

    Even then there are still some issues rendering the form. I have to
    click on the form (basically "focusing" the window) and waving the
    mouse in front where the flash form would usually be.

    I like the way flash forms simplify form building and display but I
    could not use it on a production environment because of these bugs

    On Mon, 6 Jun 2005 20:26:16 +0000 (UTC), "nsnvas"
    <webforumsuser@macromedia.com> wrote:
    >Hi
    >
    > I am getting nothing inside CFFORM. I want to bring the cfform in particular
    >area in my page.
    >
    > I tried something like this:
    > <table>
    > <tr>
    > <td colspan=2>
    > <cfinclude template="topnav.inc">
    > </td>
    > </tr>
    > <td>
    > <cfinclude template="leftnav.inc">
    > </td>
    > <td>
    > <cform form="flash">
    > .......
    > ....
    > </cfform>
    > </td>
    > </tr>
    > </table>
    >
    > Is there any work around or bug in CFFORM?
    >
    > Thanks in Advance
    >
    > -SN
    Ro 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