RE: CF 10 Release

2012-04-20 Thread Jenny Gavin-Wear
I'd bet dollars, but not real money ;) lol >>-Original Message- >>From: Raymond Camden [mailto:raymondcam...@gmail.com] >>Sent: 17 April 2012 14:28 >>To: cf-talk >>Subject: Re: CF 10 Release >> >> >>Anybody want to take a bet with me? ;) >> >>On Tue, Apr 17, 2012 at 7:40 AM, Andrew Scott

Re: problems with json and google maps

2012-04-20 Thread Seamus Campbell
Thanks to all who replied. I used Edward Chanter solution which gave me the json object in what appeared to be the correct format but I still couldn't get it to work. I'm going to advertise to get someone to help me on cf-jobs. ~~

Re: problems with json and google maps

2012-04-20 Thread Geoffrey Bentz
Scott Stroz put a function on CFLib.org that can help. http://cflib.org/udf/queryConvertForjqGrid He wrote it to convert a query to a json format for jQuery's jqGrid plugin, but I started using it this week to send json data for jQuery templates. It only took a slight tweak since the jQuery templ

Re: SHA 28 CHARACTER 40 CHARACTER CF8

2012-04-20 Thread Randy Messer
>Using Hash expression with SHA according to docs it is to return a 28 >character string. >When I run this, it returns a 40 character string. > >From Documentation. >SHA: Generates a 28-character string using the Secure Hash Standard SHA-1 >algorithm >specified by Nation Institute of Standards a

Charles Proxy and ColdFusion 9

2012-04-20 Thread Bill Franklin
Just wondering if anyone has had any luck with getting the SQLQuery information in response header with Charles Proxy after upgrading to ColdFusion 9. It works correctly on ColdFusion 8, with the exact same debugging settings, but although the header comes shows up, it does not have any of the

Re: problems with json and google maps

2012-04-20 Thread Andrew Scott
I would use this instead http://www.epiphantastic.com/cfjson/ -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 On Fri, Apr 20, 2012 at 6:39 PM, Edward Chanter wrote: > > I've had similar problems to this when trying to se

RE: problems with json and google maps

2012-04-20 Thread Edward Chanter
I've had similar problems to this when trying to serialise JSON for a jQuery plugin. The only solution I found that worked is detailed here: select product_id as value, product_title as label from products where product_title like #serializeJ

problems with json and google maps

2012-04-20 Thread Seamus Campbell
Hi I'm trying to populate a google map from a cfquery. I serializeJSON the query then try and use that json object to populate the map. I'm using code from Gabriel Svennerberg's Google Maps books (see code below), but my json object from the query looks very different (in format) from the examp