coldfusion flash integration:
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.AddCopierAct2.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>