[jQuery] Re: AjaxCFC success return value

2009-01-21 Thread alexquery
bump :) -- View this message in context: http://www.nabble.com/AjaxCFC-success-return-value-tp21580307s27240p21581667.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: AjaxCFC and jQuery 1.2.2 and above

2008-02-25 Thread Rey Bango
Hi Josh, Yeah neither Rob nor myself have had time to focus on AjaxCFC due to time constraints. If you have the error, I can take a peak. Rey Josh Nathanson wrote: Hey all, I was working with the new jQuery 1.2.3 over the weekend and noticed that it broke my ajaxCFC installation. I had

[jQuery] Re: AjaxCFC and jQuery 1.2.2 and above

2008-02-25 Thread Josh Nathanson
Rey, I'll slap together a test page and send another email when it's ready. -- Josh - Original Message - From: Rey Bango [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Monday, February 25, 2008 10:57 AM Subject: [jQuery] Re: AjaxCFC and jQuery 1.2.2 and above Hi Josh

[jQuery] Re: AjaxCFC and jQuery 1.2.2 and above

2008-02-25 Thread Josh Nathanson
- Original Message - From: Rey Bango [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Monday, February 25, 2008 10:57 AM Subject: [jQuery] Re: AjaxCFC and jQuery 1.2.2 and above Hi Josh, Yeah neither Rob nor myself have had time to focus on AjaxCFC due to time constraints. If you

[jQuery] Re: AjaxCFC + jQuery tutorial: part 2

2007-10-19 Thread Andy Matthews
I'll forgive your lateness if you post the link. :) andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: Thursday, October 18, 2007 11:35 PM To: jQuery Group Subject: [jQuery] AjaxCFC + jQuery tutorial: part 2 I realize that this is

[jQuery] Re: AjaxCFC + jQuery tutorial: part 2

2007-10-19 Thread Priest, James (NIH/NIEHS) [C]
http://cjordan.us/index.cfm/2007/10/18/jQuery--AjaxCFC-Tutorial-Part-2-H andling-Complex-Data Jim -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, October 19, 2007 9:16 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: AjaxCFC + jQuery tutorial

[jQuery] Re: ajaxCFC and CF8

2007-10-04 Thread Christopher Jordan
O... wrappers around the jQuery UI components sounds cool. Gotta keep us posted about that one! :o) Chris On 10/3/07, Rey Bango [EMAIL PROTECTED] wrote: Brook, CF8 provides quite a number of options in terms of prebuilt Ajax controls but I tend to refer to them as intro widgets. They

[jQuery] Re: AjaxCFC

2007-10-04 Thread Brook Davies
it returned an evaluated - but there must be a better way, no? BrookD _ size=2 width=100% align=center tabindex=-1 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jack Killpatrick Sent: October 3, 2007 6:19 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re

[jQuery] Re: ajaxCFC and CF8

2007-10-04 Thread Brook Davies
:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: October 3, 2007 5:52 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ajaxCFC and CF8 Brook, CF8 provides quite a number of options in terms of prebuilt Ajax controls but I tend to refer to them as intro widgets. They don't provide the level

[jQuery] Re: AjaxCFC

2007-10-04 Thread Christopher Jordan
-- size=2 width=100% align=center tabindex=-1 *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Jack Killpatrick *Sent:* October 3, 2007 6:19 PM *To:* jquery-en@googlegroups.com *Subject:* [jQuery] Re: AjaxCFC Hmm, maybe create a global

[jQuery] Re: AjaxCFC

2007-10-04 Thread Jack Killpatrick
size=2 width=100% align=center tabindex=-1 *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Jack Killpatrick *Sent:* October 3, 2007 6:19 PM *To:* jquery-en@googlegroups.com *Subject:* [jQuery] Re: AjaxCFC Hmm

[jQuery] Re: AjaxCFC

2007-10-03 Thread Brook Davies
Hello Jack, Well I want to get the scope of the calling object that the function resides in. I have multiple instances of this object: someObj = { getData: function(){ //cfAjax request starts here } , dataResult: function(data){

[jQuery] Re: AjaxCFC

2007-10-03 Thread Steve Brownlee
Brook: Your post is just vague enough to not be answerable. What exactly do you mean by calling object? Do you mean the function inside which you make the $.AjaxCFC() call? Do you mean the the arguments - and their values - passed via the data property of AjaxCFC? A code snippet would really

[jQuery] Re: ajaxCFC and CF8

2007-10-03 Thread Rey Bango
Brook, CF8 provides quite a number of options in terms of prebuilt Ajax controls but I tend to refer to them as intro widgets. They don't provide the level of functionality available in jQuery or many other libs and do not adhere to any form of progressive enhancement. Also, few users want

[jQuery] Re: AjaxCFC

2007-10-03 Thread Jack Killpatrick
Hmm, maybe create a global var to hold a ref to the scope? var currentObj; and in getData: currentObj = this; ajax call and in dataResult: currentObj.someProperty = data.yadda; currentObj = null; ? In case you don't know, the ajaxCFC also has a success callback: $.AjaxCFC({

[jQuery] Re: AjaxCFC

2007-10-02 Thread Josh Nathanson
Can you post your current code, at least the fragment that contains the AjaxCFC call? -- Josh - Original Message - From: Brook Davies To: jquery-en@googlegroups.com Sent: Tuesday, October 02, 2007 1:39 PM Subject: [jQuery] AjaxCFC Can anyone who uses ajaxCFC tell me how

[jQuery] Re: AjaxCFC

2007-10-02 Thread Jack Killpatrick
As far as passing args through the callback/success proces, I usually set a var before the ajaxCFC call and then use it inside the callback: var yadda = 'ya'; and inside the callback: if (yadda == 'ya') Not sure what you mean about scope, though, but maybe you mean something like:

[jQuery] Re: ajaxcfc - if ajax call fails - how does it get handled?

2007-09-25 Thread Duncan
From what you have written it looks like you are just taking a stab in the dark - do you use ajaxCFC? On 9/25/07, Alexander Bilbie [EMAIL PROTECTED] wrote: It's just 'failure' then function etc.. So from your script: $.AjaxCFC({ url: /packages/ajax/primaryInvitee .cfc,

[jQuery] Re: ajaxcfc - how to write default error handler

2007-09-25 Thread Duncan
Can anyone help me out with overriding the default error handler in ajaxcfc? On 9/24/07, Duncan [EMAIL PROTECTED] wrote: I am using the new ajaxcfc version in jquery and I want to know how to override the default and write my own error handler. I am trying to catch a timeout. can anyone

[jQuery] Re: ajaxcfc - how to write default error handler

2007-09-25 Thread Rey Bango
Duncan, I'll take a look at it. While jQuery is included in AjaxCFC, most people on this list don't code in CF so you may not get a quick reply. Rob Gonda and I will be setting up a support area http://ajaxcfc.com. Rey Bango... Duncan wrote: Can anyone help me out with overriding the

[jQuery] Re: ajaxcfc - how to write default error handler

2007-09-25 Thread Duncan
Hi Rey Thanks for your response - after much trial and error I have worked out the following: Turn off the default handler: $.AjaxCFCHelper.setUseDefaultErrorHandler(false); In the $.AjaxCFC() use error: $.AjaxCFC({ url: /packages/ajax/primaryInvitee.cfc,

[jQuery] Re: AjaxCFC and jQuery Suggest

2007-08-14 Thread Andy Matthews
I haven't seen that one, but the autosuggest by Dan Switzer is great. http://www.pengoworks.com/workshop/jquery/autocomplete.htm andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Duncan Sent: Monday, August 13, 2007 8:19 PM To: