Flash forms play by different rules in many cases.  I doubt you can loop
through a recordset and dynamically generate a Flash form.  Any reason you
aren't staying with an HTML form?



-----Original Message-----
From: Gabriel Robichaud [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 16, 2007 1:53 PM
To: CF-Talk
Subject: Re: Creating replicated sites with coldfusion

Hello everyone

I have a bit of code and I am a little confused as to why, when i change the
format attribute to ="flash", the whole thing goes crazy. All the values in
my text field are identical to the first row returned by the query.
However, HTML format works quite well with expected output.

Any input would be great. Code is bellow. I am working off Windows XP. CF8
Dev edition.



<cfoutput>
<cfloop query="getLabels">

<cfform format="html"  id="mod#theID#"
action="index.cfm?view=labels&#session.URLToken#"
method="post" skin="haloSilver" width="310">
   <cfformgroup type="horizontal">
     <cfinput type="hidden" name="ID" value="#theID#">
     <cfformitem width="25" type="html">#theLabelID#</cfformitem>
     <cfinput width="170" type="text" value="#theContent#" name="label">
     <cfinput width="75" type="submit" value="Update" name="submit">
   </cfformgroup>
 </cfform>


</cfloop>
</CFOUTPUT>




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291268
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to