Search the web
Sign In
New User? Sign Up
cfajax
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2003 - 2032 of 2032   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2003
Can you just use a url specified from the root (e.g. /mxajax/core/cf/example.cfc)? This means the domain is unnecessary and it's how I always do it. ... -- ...
James Holmes
holmesjr_2005
Offline Send Email
Oct 31, 2007
1:36 pm
2004
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 ...
Edward Chanter
jumperb
Offline Send Email
Oct 31, 2007
1:39 pm
2005
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...
Thomas Chen
thomasc516
Offline Send Email
Oct 31, 2007
3:38 pm
2006
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...
davidboydcf
Offline Send Email
Nov 24, 2007
4:43 am
2007
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:...
James Holmes
holmesjr_2005
Offline Send Email
Nov 24, 2007
10:51 am
2008
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...
davidboydcf
Offline Send Email
Nov 25, 2007
7:49 pm
2009
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...
aden_trace
Offline Send Email
Nov 29, 2007
4:15 pm
2010
No one has any insight?...
aden_trace
Offline Send Email
Dec 6, 2007
12:14 am
2011
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...
Angela Trigg
angplange
Offline Send Email
Mar 29, 2008
9:03 pm
2012
If you change to mxAjax, Scriptaculous is built in. ... -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/...
James Holmes
holmesjr_2005
Offline Send Email
Mar 30, 2008
12:06 am
2013
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...
saturness1
Offline Send Email
Apr 28, 2008
4:25 pm
2014
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 ...
Edward Chanter
jumperb
Offline Send Email
Apr 29, 2008
8:30 am
2015
I would like to be able to return to the function that called the DWREngine._execute() method. Is it possible to do this?...
okiiyama
Offline Send Email
Jul 29, 2008
8:36 pm
2016
Hi, Has anyone tried this? Using the Mootools framework with the cfajax for ColdFusion 7?...
jmendham2
Offline Send Email
Sep 19, 2008
8:52 pm
2017
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...
Sung
sjwoo
Offline Send Email
Nov 5, 2008
3:03 pm
2018
Never mind -- I found the answer by looking at ajaxCFC: window.onload=onInit; Now it works fine without the body onLoad... - Sung...
Sung
sjwoo
Offline Send Email
Nov 5, 2008
3:12 pm
2019
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...
Amin
aminzagallai
Offline Send Email
May 11, 2009
8:09 pm
2020
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...
sergio.bonfiglio@...
sergio.bonfi...
Offline Send Email
Jul 18, 2009
6:21 am
2021
First. it's best to upgrade to mxAjax - cfajax hasn't been updated in a long time. Second, try this: ...
James Holmes
holmesjr_2005
Offline Send Email
Jul 18, 2009
6:49 am
2022
Hi everybody, I am trying to use cfajax to load a content from a database. I have been inpired by this web...
onomo joel
joelonomo
Offline Send Email
Nov 10, 2009
4:13 pm
2023
Hi everybody, I am trying to use cfajax to load a content from a database. I have been inpired by this web ...
onomo
joelonomo
Offline Send Email
Nov 10, 2009
4:13 pm
2024
It appears you are trying to return a variable and not a query object. See example: <cffunction name="getWorkOptions" access="private" returntype="query"> ...
Keith Henderson
head_java
Offline Send Email
Nov 10, 2009
4:31 pm
2025
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...
onomo joel
joelonomo
Offline Send Email
Nov 10, 2009
5:13 pm
2026
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...
Keith Henderson
head_java
Offline Send Email
Nov 10, 2009
6:39 pm
2027
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...
onomo joel
joelonomo
Offline Send Email
5:35 am
2028
Almost there    document.getElement ById("info" ).innerHTML =WorkQuery[0] .result;  should be  document.getElement ById("info" ).innerHTML =...
Keith Henderson
head_java
Offline Send Email
1:58 pm
2029
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...
onomo joel
joelonomo
Offline Send Email
4:21 pm
2030
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....
onomo joel
joelonomo
Offline Send Email
4:21 pm
2031
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...
onomo joel
joelonomo
Offline Send Email
4:23 pm
2032
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...
Keith Henderson
head_java
Offline Send Email
4:48 pm
Messages 2003 - 2032 of 2032   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help