Correct,
There is no way to fix this (in CF 4 or 5!...).
-mk
-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 12, 2002 11:30 AM
To: CF-Talk
Subject: RE: Alphabetical Order for executed templates?
> Is it just me or does it lo
> Is it just me or does it looks like the debug output for
> CF show the templates in alphabetical order instead of by
> execution sequence? I am talking about the output below
> "Execution Time".
Yes, that's correct.
> Is there a way to change this?
No, I don't think you can. I suspect they
Hi Roger,
Thanks so much!!! I did not believe that it would be so easy!!
Miriam Hirschman
-Original Message-
From: Roger Lim [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 21, 2000 12:01 AM
To: [EMAIL PROTECTED]
Subject: Re: alphabetical Order
There is no built-in function to handle
There is no built-in function to handle this in CF. but you can have a CFML
custom tag that you can use to order your results.
After your , call out the below custom tag and whola! you're done.
;)
roger lim
- Original Message -
From:
try this, as u r getting data to select box from the query, u simply order
the result set in the query itself.
select fieldNAME from table
order by fieldname
#sort.fieldname#
nagesh
-Original Message-
From: aslam bajaria [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 06, 2000
Aslam,
When you when you query the database put an ORDER BY on the end of the SQL
statement.
e.g.
SELECT ID,Description
FROM tblDropDown
ORDER BY Description
Hope that helps.
Regards
Stephen
> -Original Message-
> From: aslam bajaria [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 05
Aslam,
If you have control of your query, then use the ORDER BY clause to sort your
data in a specific manor-this is the best approach. Let the database do what
it does best.
For example:
SELECT ServiceID, Description
FROM Services
ORDER BY Description
#Description#
7 matches
Mail list logo