Ask a Question related to Coldfusion Database Access, Design and Development.
-
J. Random #1
Multiple DB Columns display in <cfselect display>
*disclaimer* -- I'm a CF n00b.
Hello all,
J. Random Guest
-
how to display data in 3 columns by 4 rows format
All, I will be eternally greatful if someone can provide snippet of code, URL or reference material that shows how to display data in a "n... -
Can we bind the values from cfselect to display thoseinto cfinput text boxes.
Hi, I have a cfselect box which is having values from cfquery. I want to bind those values into few input boxes. I have been trying for so many... -
displaying multiple columns in <cfselect>
ok, I have a database that house a table called model. The model contains a manufacturer foreign key and 3 other fileds for that table. I want... -
Display query columns picture & TEXT
Okay, I was able to display my product pictures in 2 rows of 3 columns using the MOD function. Only problem is, I want to nest in my product... -
want to display 2 variables in cfselect
HI! It is been years since I played with coldfusion... I can't remember how to display 2 variables in a cfselct.. I would like to do something... -
forumnotifier #2
Multiple DB Columns display in <cfselect display>
*disclaimer* -- I'm a CF n00b.
Hello all,
forumnotifier Guest
-
J. Random #3
Multiple DB Columns display in <cfselect display>
*disclaimer* -- I'm a CF n00b.
Hello all,
J. Random Guest
-
J. Random #4
Multiple DB Columns display in <cfselect display>
*disclaimer* -- I'm a CF n00b.
Hello all,
J. Random Guest
-
mxstu #5
Re: The real post - Multiple DB Columns display in<cfselect display>
Welcome :-)
Just string the first and last name together as a single column in your query.
Then use that column name in your cfselect. For example:
--- query was not tested!
SELECT FirstName +' '+ LastName AS FullName
FROM yourTable
<cfselect display="FullName" ....etc... >
Tip, it is a good idea to get into the habit of not using SELECT * FROM Table.
Only select the columns you need. SELECT * makes the database work harder and
returns more information than you probably need, which can slow down
performance.
mxstu Guest
-
jorgepino #6
Re: The real post - Multiple DB Columns display in<cfselect display>
are you using <cfform>.... </cfform>?
jorgepino Guest



Reply With Quote

