Search the web
Sign In
New User? Sign Up
ajaxcfc · ajaxCFC Group
? 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 980 - 1009 of 1584   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
980
Rob: can you release a ajaxcfc version for jquery? may be is more secure.... serialization and encription, etc......
Erick Rodriguez
tberickrodri...
Offline Send Email
Nov 2, 2006
12:46 pm
981
Anybody did successful use YUI with AjaxCFC? I have project which uses YUI all over the site thus I would be nice to replace DWR or at least util.js with the...
Daniel Schmid
ananda1203
Offline Send Email
Nov 2, 2006
1:59 pm
982
Hi, I'm very new to this AJAX thing. I was trying to edit one of Rob's examples and I'm not sure what is wrong here: <script type="text/javascript"> function...
frankjaeshin
Offline Send Email
Nov 2, 2006
3:10 pm
983
Are you sure the error is in the init function? If so, it would help us of you posted that CF code. 'Invalid reply from server' almost always means you've...
Munson, Jacob
yacoubean
Offline Send Email
Nov 2, 2006
3:34 pm
984
Here's the init function: <cffunction name="init" access="public" returntype="Person" output="false" hint="Creates an instance of the Person component - ie an...
frankjaeshin
Offline Send Email
Nov 2, 2006
3:47 pm
985
I'd personally like to see AjaxCFC with just about any other js library other than DRW. YUI, Dojo, jQuery: any of these would be excellent choices, I think....
Christopher Jordan
c_s_jordan
Offline Send Email
Nov 2, 2006
4:02 pm
986
As I stated in another thread (not two minutes ago :o)), I'd *love* to see an AjaxCFC implementation that uses jQuery, YUI, or Dojo. I'm currently using...
Christopher Jordan
c_s_jordan
Offline Send Email
Nov 2, 2006
4:09 pm
987
I'll chat with Rob about this. Since I'm a huge fan of JQuery, I might be able to twist his arm. :o) Rey......
Rey Bango
reybango
Offline Send Email
Nov 2, 2006
6:41 pm
988
Hi Daniel, AjaxCFC/DWR should work just fine with YUI since YUI uses namespaces to properly isolate their calls. They should co-exist with no issues. Now, just...
Rey Bango
reybango
Offline Send Email
Nov 2, 2006
6:41 pm
989
"I haven't checked Rob's site in a while. Is there any word from him that he may try to incorporate a different JS library into AjaxCFC?" Rob has mentioned...
Munson, Jacob
yacoubean
Offline Send Email
Nov 2, 2006
7:00 pm
990
I could be wrong, but I'd suggest that ajaxCFC doesn't support returning a cfc object like that. I'm not sure where you're going with that (I'd have to look...
Munson, Jacob
yacoubean
Offline Send Email
Nov 2, 2006
8:21 pm
991
Hi Rey Thanks for your excellent answer... Thus I guess I have to look into CFJSON to work together with YUI connection manager... Even if AjaxCFC/DWR work...
Daniel Schmid
ananda1203
Offline Send Email
Nov 2, 2006
8:29 pm
992
Yep. I totally agree although mixing of different frameworks isn't necessarily a bad thing if the two bring you a major development benefit. For example, if...
Rey Bango
reybango
Offline Send Email
Nov 2, 2006
8:58 pm
993
AjaxCFC is able to return CFQuery objects with no problem. Are you trying to pass back the entire "this" scope, or did I miss something? Chris...
Christopher Jordan
c_s_jordan
Offline Send Email
Nov 2, 2006
9:03 pm
994
Daniel, post if you need help with the CFJson stuff. I just recently started using it, and had minor (very minor) difficulty using it the first time, but it's...
Christopher Jordan
c_s_jordan
Offline Send Email
Nov 2, 2006
9:13 pm
995
Really? Well, I couldn't get it to work, but I was probably doing something wrong. Frank is trying to return the entire 'this' scope, though. ...
Munson, Jacob
yacoubean
Offline Send Email
Nov 2, 2006
9:19 pm
996
Yep, Chris and I have been helping each other out with JSon stuff and he's definitely taken the lead on that. Chris is a good resource. Also, if you're not...
Rey Bango
reybango
Offline Send Email
Nov 2, 2006
9:29 pm
997
hmm... never tried that... but it's just a structure really, isn't it? I don't know (and I probably should) if CF treats scopes differently than structures....
Christopher Jordan
c_s_jordan
Offline Send Email
Nov 2, 2006
9:57 pm
998
Actually, it's in the variables scope. So the properties are not accessible directly outside the component. You need to use the accessor methods to access...
frankjaeshin
Offline Send Email
Nov 3, 2006
12:28 am
999
Hi, I noticed that on pages where I am using ajaxCFC, I am no longer seeing the debugging information at the bottom of the screen generated by Administrator....
frankjaeshin
Offline Send Email
Nov 3, 2006
12:42 pm
1000
Frank, That debugging is turned off by the framework I believe. Coldfusion debugging will cause most ajax implementations to fail for a lot of reasons like: 1)...
Dan Wilson
klar1ty
Offline Send Email
Nov 3, 2006
2:27 pm
1001
Frank, Dan's right. Debugging is turned off by AjaxCFC. To overcome this problem, include a <CFSetting ShowDebugOutput = "Yes"> in your OnRequestEnd.cfm file....
Christopher Jordan
c_s_jordan
Offline Send Email
Nov 3, 2006
2:39 pm
1002
Thanks Chris. That did the trick. ... fixed it. ... duplicate ... work. ... generated...
frankjaeshin
Offline Send Email
Nov 3, 2006
2:56 pm
1003
I don't know that there's a published list of return types you can use, but I tend to look at the examples posted on Rob's site as a definitive list of what...
Munson, Jacob
yacoubean
Offline Send Email
Nov 3, 2006
3:00 pm
1004
I can't seem to return a query either. Man, I stink at this. <script type='text/javascript'>_ajaxConfig = {'_cfscriptLocation':'components/Person.cfc', ...
frankjaeshin
Offline Send Email
Nov 3, 2006
3:28 pm
1005
Sweet! :o)...
Christopher Jordan
c_s_jordan
Offline Send Email
Nov 3, 2006
3:30 pm
1006
Are you getting "Invalid reply from server"? If so, I have found the Firefox plugin Firebug to be indispensible. You can view the real error message that...
Munson, Jacob
yacoubean
Offline Send Email
Nov 3, 2006
3:47 pm
1007
Frank, You haven't set a return type in your cfc method. Try adding ReturnType="query" to your CFFunction statement. I was all ready with a much more elaborate...
Christopher Jordan
c_s_jordan
Offline Send Email
Nov 3, 2006
3:53 pm
1008
Hey Chris, returntype added and still no go... Frank ... can use, ... definitive ... was able ... <mailto:ajaxcfc%40yahoogroups.com> ... ...
frankjaeshin
Offline Send Email
Nov 3, 2006
4:03 pm
1009
Also, the newest version of the AjaxCFC framework has a wonderful logger called Log4Javascript, I believe it is called. You can see it in action here: ...
Dan Wilson
klar1ty
Offline Send Email
Nov 3, 2006
4:32 pm
Messages 980 - 1009 of 1584   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