all groups > coldfusion flash integration > august 2006 >
You're in the

coldfusion flash integration

group:

cfform giving errors


cfform giving errors infa
8/8/2006 1:36:13 AM
coldfusion flash integration: Hello, I don't mean to sound desperate but I am. I'm trying to get the cfform
to work but it give me an error saying that I used attributes wrong, but the
code looks right. Below is the link to the form online, click it and you will
see the error I'm getting, also I've past my form code below for review. If
anyone has any advice I need it.

Thanks.


<cfform format="flash" skin="halosilver" width="500">
<cfformgroup type="tabnavigator">
<cfformgroup type="page" label="Personal Data">
<cfformgroup type="horizontal" label="Contact">
<cfinput name="firstname" type="text" label="First Name" width="20" />
<cfinput name="lastname" type="text" label="Last Name" width="20" />
<cfinput name="email" type="text" label="Email" width="20" />
<cfinput name="phone" type="text" label="Phone" width="20" />
</cfformgroup>
</cfformgroup>

<cfformgroup type="page" label="Accout Info">
<cfformgroup type="horizontal" label="Accout Info">
<cfinput name="purchases" type="text" label="Purchases" width="20" />
<cfinput name="returnes" type="text" label="Returnes" width="20" />
<cfinput name="email" type="text" label="Email" width="20" />
<cfinput name="phone" type="text" label="Phone" width="20" />
</cfformgroup>
</cfformgroup>

<cfformgroup type="horizontal" label="Employment">
<cfinput name="purchases" type="text" label="Purchases" width="20" />
<cfinput name="returnes" type="text" label="Returnes" width="20" />
<cfinput name="email" type="text" label="Email" width="20" />
<cfinput name="phone" type="text" label="Phone" width="20" />
<cfinput name="submit" type="submit" label="Send my stuff" />
</cfformgroup>
</cfformgroup>


</cfform>





Re: cfform giving errors Nick Watson
8/8/2006 9:13:59 PM
You are duplicating cfinput name's

try this

<cfform format="flash" skin="halosilver" width="500">
<cfformgroup type="tabnavigator">
<cfformgroup type="page" label="Personal Data">
<cfformgroup type="horizontal" label="Contact">
<cfinput name="firstname" type="text" label="First Name" width="20" />
<cfinput name="lastname" type="text" label="Last Name" width="20" />
<cfinput name="email" type="text" label="Email" width="20" />
<cfinput name="phone" type="text" label="Phone" width="20" />
</cfformgroup>
</cfformgroup>

<cfformgroup type="page" label="Accout Info">
<cfformgroup type="horizontal" label="Accout Info">
<cfinput name="purchases1" type="text" label="Purchases" width="20" />
<cfinput name="returnes1" type="text" label="Returnes" width="20" />
<cfinput name="email1" type="text" label="Email" width="20" />
<cfinput name="phone1" type="text" label="Phone" width="20" />
</cfformgroup>
</cfformgroup>
<cfformgroup type="page" label="Employment">
<cfformgroup type="horizontal" label="Employment">
<cfinput name="purchases2" type="text" label="Purchases" width="20" />
<cfinput name="returnes2" type="text" label="Returnes" width="20" />
<cfinput name="email2" type="text" label="Email" width="20" />
<cfinput name="phone2" type="text" label="Phone" width="20" />
<cfinput name="submit" type="submit" label="Send my stuff" />
</cfformgroup>
</cfformgroup>
</cfformgroup>


</cfform>

Re: cfform giving errors infa
8/9/2006 12:00:00 AM
Thank you for your help, I just cut the code you edited and placed it in my
page. I recieved this error, view by clickng on the link below.

http://www.metaphiziks.com/form.cfm

If I can get this resolved it would be GREATTTTT!


Thanks Nick.:grin;
Re: cfform giving errors Nick Watson
8/9/2006 12:00:00 AM
Re: cfform giving errors mistainfa
8/9/2006 1:00:53 PM
Re: cfform giving errors Nick Watson
8/9/2006 1:05:19 PM
Re: cfform giving errors Nick Watson
8/9/2006 1:05:23 PM
Re: cfform giving errors mistainfa
8/9/2006 5:17:40 PM
Thanks a lot Nick, you saved me.

AddThis Social Bookmark Button