coldfusion is undefined js error

2011-07-02 Thread swathi garre
i am getting coldfusion is undefined js error and ajax binding also not working. in my local environment is working fine the code(using coldfusion built in server), but in my dev environment getting following error because there we are using IIS server as a webserver. please need help.

Re: coldfusion is undefined js error

2011-07-02 Thread Raymond Camden
Most likely it is a bad /CFIDE mapping. If you use Firebug, or Chrome Dev Tools, I bet you see a lot of 404s for various .js files CF is trying to load. On Sat, Jul 2, 2011 at 4:41 AM, swathi garre swathigarr...@gmail.com wrote: i am getting coldfusion is undefined js error and ajax binding

Capitalize

2011-07-02 Thread Jenny Gavin-Wear
I'm looking for a udf to capitalize uppercase text. There seem to be a few that does the same as a CSS text-transform, but I can't find one for text which is all in upper case. Jenny ~| Order the Adobe Coldfusion Anthology

Re: Capitalize

2011-07-02 Thread John M Bliss
Isn't uppercase text already capitalized? On Sat, Jul 2, 2011 at 7:39 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote: I'm looking for a udf to capitalize uppercase text. There seem to be a few that does the same as a CSS text-transform, but I can't find one for text which is all

Re: Changed internal IP addresses on server - cffile breaks?

2011-07-02 Thread Russ Michaels
have you updated the external live IP address to map to the NEW local IP address ? On Sat, Jul 2, 2011 at 3:51 AM, Dan Blickensderfer d...@blickensderfer.comwrote: Michael, What you are experiencing is correct when it comes to the external dns resolving. The firewall is preforming the

Re: Capitalize

2011-07-02 Thread Claude Schnéegans
I'm looking for a udf to capitalize uppercase text. What do you actually mean by Capitalize? - Having only the first character upper case in a word; - Having the whole word in small capitals; ~| Order the Adobe Coldfusion

RE: Capitalize

2011-07-02 Thread Jenny Gavin-Wear
Capitalized is a leading cap, like: This Is Capitalized. -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: 02 July 2011 13:49 To: cf-talk Subject: Re: Capitalize Isn't uppercase text already capitalized? On Sat, Jul 2, 2011 at 7:39 AM, Jenny Gavin-Wear

RE: Capitalize

2011-07-02 Thread Jenny Gavin-Wear
The first character in each word in caps, the rest lower case. -Original Message- From: Claude Schnéegans schneeg...@internetique.com [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans schneegans@interneti=71?= =?ISO-8859-1?Q?ue.com=3E?=] Sent: 02 July 2011 13:58 To: cf-talk Subject: Re:

Re: Capitalize

2011-07-02 Thread Raymond Camden
Did you check CFLIb? I think there are about 200 UDFs there just for that. ;) On Sat, Jul 2, 2011 at 8:09 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote: Capitalized is a leading cap, like: This Is Capitalized. -Original Message- From: John M Bliss

Re: Capitalize

2011-07-02 Thread John M Bliss
http://cflib.org/udf/CapFirstTitle On Sat, Jul 2, 2011 at 8:11 AM, Raymond Camden raymondcam...@gmail.comwrote: Did you check CFLIb? I think there are about 200 UDFs there just for that. ;) On Sat, Jul 2, 2011 at 8:09 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote:

RE: Capitalize

2011-07-02 Thread Bobby Hartsfield
Actually, that is title case. .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] Sent: Saturday, July 02, 2011 9:09 AM To: cf-talk Subject: RE: Capitalize Capitalized

RE: Capitalize

2011-07-02 Thread Jenny Gavin-Wear
Hi Ray, Thanks for your reply... Silly of me, I didn't think to lcase() the string first. Jenny -Original Message- From: Raymond Camden [mailto:raymondcam...@gmail.com] Sent: 02 July 2011 14:11 To: cf-talk Subject: Re: Capitalize Did you check CFLIb? I think there are about 200

Re: Speeding up .NET dlls

2011-07-02 Thread Stefan Richter
The docs? Ah yes.. that would make sense :-) Thanks, I'll check it out. Stefan On 1 Jul 2011, at 18:17, Leigh wrote: initialises a .NET dll. The first request takes a very long time, and subsequent ones are much quicker. Did you check the documentation on .net assemblies? It

RE: Capitalize

2011-07-02 Thread Bobby Hartsfield
cfset str = rereplace(lcase(str), '([a-z]+)', '\u\1\2', all) / .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Bobby Hartsfield [mailto:bo...@acoderslife.com] Sent: Saturday, July 02, 2011 10:58 AM To: cf-talk Subject:

RE: Capitalize

2011-07-02 Thread Bobby Hartsfield
The \2 is a left over from the first one I did... its not needed in this shorter one (which makes it even shorter). cfset str = rereplace(lcase(str), '([a-z]+)', '\u\1', all) / .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message-

Re: Capitalize

2011-07-02 Thread Jake Churchill
Do lcase() on the text in CF, then use text-transform:capitalize in css. - Sent from my Droid On Jul 2, 2011 7:40 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote: I'm looking for a udf to capitalize uppercase text. There seem to be a few that does the same as a CSS text-transform,

RE: Capitalize

2011-07-02 Thread Jenny Gavin-Wear
thanks for the replies, everyone :) Bobby, nice regex ... I really need to learn it ... thank you. -Original Message- From: Jake Churchill [mailto:reyna...@gmail.com] Sent: 02 July 2011 16:37 To: cf-talk Subject: Re: Capitalize Do lcase() on the text in CF, then use