Problem passing hidden fields using Flash form

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

  1. #1

    Default Problem passing hidden fields using Flash form

    I'm working with Flash forms for the first time, and am having problems passing
    information in hidden fields. The information was passed from prior pages, and
    I'm able to verify that it is coming to the flash form page. However a CFDUMP
    on the action page shows the flash fields but not the hidden ones.

    I've pasted a copy of the code below.

    <CFFORM method="post"
    action="index.cfm?fuseaction=Equipment.AddCopierAc t2.cfm" name="addCopierInfo"
    format="flash">
    <TABLE>
    <TR>
    <TD><CFinput name="SN" type="text" required="yes" label="Serial Number"
    size="10" message="Please enter a serial number."></TD>
    </TR>
    <TR>
    <TD><CFinput name="LocationDescription" type="text" required="yes"
    label="Location Description" size="20" message="Please enter a location
    description."></TD>
    </TR>
    <TR>
    <TD><CFinput name="DateInService" type="datefield" label="Date in Service"
    size="10" required="yes" message="Please enter the date the copier entered
    service."></TD>
    </TR>
    <TR>
    <TD><CFinput name="InitialReading" type="text" label="Initial Reading"
    size="10" required="yes" message="Please enter the initial reading at the date
    in service."></TD>
    </TR>
    <TR>
    <TD><CFinput name="CopyAllowance" type="text" label="Copy Allowance
    (monthly)" size="10"></TD>
    </TR>
    <TR>
    <TD colspan="2" align="center"><CFinput name="submit" type="submit"
    value="Add This Copier!"></TD>
    </TR>
    </TABLE>
    <input name="CopierTypeID" type="hidden" value="#FORM.CopierTypeID#">
    <input name="LocCode" type="hidden" value="#getLocs.LocCode#">
    </CFFORM>

    lusciousmango Guest

  2. Similar Questions and Discussions

    1. Passing Dynamic Variable In A Hidden Form
      Hello: I am trying to pass a hidden variable from a form on my web application to the PayPal site for payment processing. I can get my code to...
    2. Dynamically Adding Form Fields to CF Flash Form
      I think I know the answer to this but, after some failed Googles, I wanted to double-check here. I have a Flash-based event registration form I'm...
    3. CF7 Flash Hidden Fields
      Hey- Any idea why my hidden field isn't passing in a Flash Form in CF7? I thought you could use them now.... Thanks. Drew
    4. Flash form with hidden field
      CF MX7 has nice flash form, but my question is, how could pass embedded hidden field like regular html form do? <cfinput type="hidden" name="">...
    5. Submit Form with Hidden Fields to URL
      I have been looking for examples of submitting form that has hidden fields via Flash MX 2004. I have to submit purchasing information to PAYPAL. ...
  3. #2

    Default Re: Problem passing hidden fields using Flash form

    Solved it. :) Flash forms don't allow for a combination of CFINPUTs and INPUTs.

    Who knew?
    lusciousmango 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