I just tried it and it worked perfectly. Thanks very much James! ;-) From: cfajax@yahoogroups.com [mailto:cfajax@yahoogroups.com] On Behalf Of James Holmes ...
2005
Thomas Chen
thomasc516
Oct 31, 2007 3:38 pm
ive read that article and nothing worked. I took your advice and went with mxajax. I got the example to work which is great, now lets see if i can add it to my...
2006
davidboydcf
Nov 24, 2007 4:43 am
Dear Cfajax gurus, I am getting so frustrated with trying to get cfajax working with safari!!!!! I had my site pretty much done and ready to deliver - then...
2007
James Holmes
holmesjr_2005
Nov 24, 2007 10:51 am
Maybe this will help: http://www.opensourcecf.com/1/2006/02/Getting-CFAJAX-to-handle-Safari-properly.cfm ... -- mxAjax / CFAjax docs and other useful articles:...
2008
davidboydcf
Nov 25, 2007 7:49 pm
Thanks for this, but had already tried that but it did no good. Any other ideas? ... Safari-properly.cfm ... the ... NOOOOOOOOOOOO!!!!) (It ... the ... even go...
2009
aden_trace
Nov 29, 2007 4:15 pm
Forgive me if I'm beating a dead horse but searched Google and this newsgroup for any insight and could find none. I am experiencing browser cache with my...
2010
aden_trace
Dec 6, 2007 12:14 am
No one has any insight?...
2011
Angela Trigg
angplange
Mar 29, 2008 9:03 pm
I'm an early adopter of CFAjax but was just trying to integrate scriptaculous with CFAJax and keep getting JS errors until I finally narrowed it down that I...
2012
James Holmes
holmesjr_2005
Mar 30, 2008 12:06 am
If you change to mxAjax, Scriptaculous is built in. ... -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/...
2013
saturness1
Apr 28, 2008 4:25 pm
I'm going to start off by saying that I am a brand new user of cfajax. I'm working on an application that already has cfajax to populate a single drop down...
2014
Edward Chanter
jumperb
Apr 29, 2008 8:30 am
You might find it easier to switch to mxAjax as the codebase is newer, I’ve had far less issues with mxAJax than I did trying cfAjax ...
2015
okiiyama
Jul 29, 2008 8:36 pm
I would like to be able to return to the function that called the DWREngine._execute() method. Is it possible to do this?...
2016
jmendham2
Sep 19, 2008 8:52 pm
Hi, Has anyone tried this? Using the Mootools framework with the cfajax for ColdFusion 7?...
2017
Sung
sjwoo
Nov 5, 2008 3:03 pm
Is it possible to run CFAJAX without calling Init() through body onLoad? I don't want to be calling Init() on every single page of my site, since the body tag...
2018
Sung
sjwoo
Nov 5, 2008 3:12 pm
Never mind -- I found the answer by looking at ajaxCFC: window.onload=onInit; Now it works fine without the body onLoad... - Sung...
2019
Amin
aminzagallai
May 11, 2009 8:09 pm
Hello, I get an error when the user is trying to execute a function which is using a timed out session variable ... typical error!!! How can I trap for session...
2020
sergio.bonfiglio@...
sergio.bonfi...
Jul 18, 2009 6:21 am
Hello to the community. You will probably consider me an ass, but I'm experiencing a very strange behaviour. If I try to run the examples from the directory...
2021
James Holmes
holmesjr_2005
Jul 18, 2009 6:49 am
First. it's best to upgrade to mxAjax - cfajax hasn't been updated in a long time. Second, try this: ...
2022
onomo joel
joelonomo
Nov 10, 2009 4:13 pm
Hi everybody, I am trying to use cfajax to load a content from a database. I have been inpired by this web...
2023
onomo
joelonomo
Nov 10, 2009 4:13 pm
Hi everybody, I am trying to use cfajax to load a content from a database. I have been inpired by this web ...
2024
Keith Henderson
head_java
Nov 10, 2009 4:31 pm
It appears you are trying to return a variable and not a query object. See example: <cffunction name="getWorkOptions" access="private" returntype="query"> ...
2025
onomo joel
joelonomo
Nov 10, 2009 5:13 pm
Thank you for your answer, Please can i have an example where to access to those values in the javascript function to be called by DWREngine._execute? Thank...
2026
Keith Henderson
head_java
Nov 10, 2009 6:39 pm
I not longer use CFajax, I use ajaxCFC, this is a different ajax coldfusion project. ajaxCFC has some quick ways of building tables, selects etc using your...
2027
onomo joel
joelonomo
Nov 11, 2009 5:35 am
Right now i have void results, but the post has the right values. When i check response with firebug, all the queries column are there but they are void. and...
2028
Keith Henderson
head_java
Nov 11, 2009 1:58 pm
Almost there   document.getElement ById("info" ).innerHTML =WorkQuery[0] .result;  should be  document.getElement ById("info" ).innerHTML =...
2029
onomo joel
joelonomo
Nov 11, 2009 4:21 pm
I solved the problem with the database, but it looks like the results of the cfquery are not copied in the QueryNew. I don't know why. Thank you This is the...
2030
onomo joel
joelonomo
Nov 11, 2009 4:21 pm
Sorry, but i forgot the cfouput around the cfscript. Now it works only when i put static values in the query. When i use #arguments.year#..... it doesn't work....
2031
onomo joel
joelonomo
Nov 11, 2009 4:23 pm
Good morning, When i do that, i have a message saying that WorkQuery.result is undefined. Also, i think that my query doesn't return any result and i don't...
2032
Keith Henderson
head_java
Nov 11, 2009 4:48 pm
Can't help you there never had issues using #arguments.xyz# in queries (MySQL). Don't understand the <cfoutput>. This is a server-side call, your only output...