Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
lusciousmango #1
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
-
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... -
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... -
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 -
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="">... -
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. ... -
lusciousmango #2
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



Reply With Quote

