RE: Alphabetical Order for executed templates?

2002-03-12 Thread Mark A. Kruger - CFG
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

RE: Alphabetical Order for executed templates?

2002-03-12 Thread Dave Watts
> 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

RE: alphabetical Order

2000-08-21 Thread Miriam Hirschman
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

Re: alphabetical Order

2000-08-20 Thread Roger Lim
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:

RE: Alphabetical Order

2000-04-10 Thread Nagesh Kumar Deva
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

RE: Alphabetical Order

2000-04-07 Thread Stephen Moretti
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

RE: Alphabetical Order

2000-04-07 Thread Dan G. Switzer, II
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#