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>
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>
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;
Thanks a lot Nick, you saved me.
Don't see what you're looking for? Try a search.
|