I am attempting to build multiple unique cfforms (flash, not html) within a loop. However, only the last cfform is appearing on the page. Works in cfform with format="html" but not with format="flash." So, I'm thinking it's the flash <cfformgroup> design not moving down the page but displaying one on top of the other? I'm using:
<code>
<cfloop query="qryJobSeeker_Education">
<cfoutput>
<cfform method="post" format="flash" skin="halosilver" preloader="yes" width="500" height="700" style="background-color:##ffffff;" action="form_components/frmJobSeeker_Profile_Education_Edit_Action.cfm" name="frm#education_id#">
<cfformgroup type="vertical" label="#education_id#">
<cfformgroup type="vbox">
<cfformgroup type="vertical">
<cfformitem type="html">School Name: #school_name#<br /></cfformitem>
.... other form fields ....
</cfformgroup>
<cfformgroup type="horizontal">
<cfinput type="hidden" name="e_id" value="#education_id#">
<cfinput type="submit" name="btnEdit_#education_id#" value="btnEdit_#education_id#" />
</cfformgroup>
</cfformgroup>
</cfformgroup>
<cfformitem type="hrule" />
</cfform>
</cfoutput>
</cfloop>
</icode>