Re: CFAjax problem - cant see why this doesn't work

2008-11-09 Thread Mike Kear
Thank you Azadi, I cant believe i didnt var my variables in that function - i var them with an almost religious fervour normally. Guess i was in too much of a hurry. I didnt know about queryConvertForGrid() sounds like the problem. I must have skipped over that in the docs about CFGrid. Thanks

Re: CFAjax problem - cant see why this doesn't work

2008-11-09 Thread Azadi Saryev
1) in your cfc function's return use: 2) is there an Application.cfc with an onRequest() method anywhere that the Utilitieslibrary cfc will be affected by? 3) var your cfc variables :) Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Mike Kear wrote: > I am experimenting with the ajax part

Re: CFAjax problem - cant see why this doesn't work

2008-11-09 Thread Stephane Vantroyen
Hi, you have to convert your query before returning it to the grid, with queryConvertForGrid : your cfreturn should look like : Regards, Stéphane >Is the cfcs.utilities.utilitieslibrary mapping correct? > >Adrian >Building a database of ColdFusion errors at http://cferror.org/ > >I am exp

RE: CFAjax problem - cant see why this doesn't work

2008-11-09 Thread Adrian Lynch
Is the cfcs.utilities.utilitieslibrary mapping correct? Adrian Building a database of ColdFusion errors at http://cferror.org/ -Original Message- From: Mike Kear Sent: 09 November 2008 06:24 To: cf-talk Subject: CFAjax problem - cant see why this doesn't work I am experimenting

Re: CFAjax problem - cant see why this doesn't work

2008-11-08 Thread Mike Kear
oh yes and p.s. i have this at the top of the calling page: Which ensures the ajax elements are included in the page, I believe Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion, PHP, ASP, ASP.NET hosting from

CFAjax problem - cant see why this doesn't work

2008-11-08 Thread Mike Kear
I am experimenting with the ajax parts of CF8, and I'm following the video on the Adobe site where it shows how to build a master detail application using the CF8 inbuilt ajax stuff. It has a CFGRID tag, which binds to a cfc method. There's where my problem arises i think.I have a simply uti