sorry, this didn't work. I still get the same error. - "Bind Failed, Element not found {myvariable}"
Main Topics
Browse All TopicsI am having trouble getting two CFselects to bind with Coldfusion 8. I am getting an error - "Bind Failed, Element not found {myvariable}". The first CFselect grabs the data, but doesn't bind the two.
I am attaching code.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Just a note moving forward as I've run into a strange problem like this with CF8 before and it honestly appears there is no good solution to this question. For reasons I cannot explain, if you're using a table to break up the cfselect elements ColdFusion requires the cfform tag to reside INSIDE the initial TD that houses the bound elements. See the code below - the first example doesn't work, the second does.
Business Accounts
Answer for Membership
by: SBennettPosted on 2008-04-04 at 15:25:38ID: 21286079
When you bind a cfselect to a cfc, the CFC needs to convert the data queries in your into a 2 dimensional array. The 1st field in the array holds the Value for each option, and the second field in the array holds the display for each option. so you code would be more like this (untested):
Select allOpen in new window