I remember reading that may be there is a limit on how many parameters you can pass to a function. I tried looking into the older messages to find it but I had...
Good Afternoon, That is correct, I had the same issue, only 10 parameters. Solution is to pass a WDDX recordset, and you will not have any limits. If you need...
Its pretty easy, and it took me a few tries to figure this out. (Since the AjaxCFC functionality has changed several times, in each incarnation of it. And the...
I would recommend, updating to the latest AjaxCFC, if you can. (i.e. you are not already using an older version of AjaxCFC in other places.) If you can not...
Not sure if anyone stills uses or monitors this group, but I'm asking anyway. Have written many... ajaxcfc programs always using the same CFC file defined in...
... is ... I'm also interested in an answer to this question. I have programmed a web application which uses a 2000 line page with a 4000 line page CFC. It'd...
First and foremost I want to thank Chris Jordan for his tutorials. I was able to perform a dump of my query and extract recordcount and columnlist. What I...
How can I not respond? Thanks for the kind words on the tutorials. I wish they were a little better. :o) To access particular rows in your dataset (which is...
Man... the formatting on that post just *did not* work out. Yikes! Sorry. Chris ... From: "Chris Jordan" <cjordan@...> To: ajaxcfc@yahoogroups.com Sent:...
Worked for me. Thanks for clearing it up. I copied the snippet from your blog early on but forgot to include cfjs. I was hung up trying to perform the loop...
New to js and wanted to know what's the best way to reuse an ajaxcfc request if this possible. I want to setup a page with multiple selects and detail table....
I will be out of the office starting 03/12/2008 and will not return until 03/18/2008. I will respond to your message when I return. If your issue is urgent,...
Good Morning, I located a cfm program to convert numeric to words. 1 = one, 2 = two etc. I'm trying to run this as a ajaxcfc component but when I do a cfset...
It looks like the function ones() is not returning anything. It needs a variable to return. Try this: <cffunction name="ones"> <cfargument name="num"...
Good Morning, That's exactly what I determined. The way CF handles variables as a standard cfm file verses a cfc component is what threw me off. Thanks for...
Hey Guys, It's been a while but I'm back writing code. I downloaded the latest version of ajaxCFC which has jQuery included. The ajaxCFC code seems to be...
Ryan, The first thing that jumps out at me is that in your line of jQuery there, you're getting an id, but you're missing the pound sign that goes along with...
Chris, Thanks as always for the reply. I believe you've helped me on more than one occasion now. I am going to boot up the work laptop and try your changes...
Chris, Thanks again for your help. Your suggestion did work and the ajax code picked up the value for locationID. But now my return function won't work. I'm...
Yes. They did. :o) I'll respond to your other post separately. :o) Chris ... From: "Ryan" <ksu_stud@...> To: ajaxcfc@yahoogroups.com Sent: Tuesday, April...
Ryan, The proper jQuery that you want is: $('#layerSpan').html(getResult); Check out this page (http://docs.jquery.com/Manipulation) for some useful jQuery...
I am trying to call a ajax function from another function. It is working this way: I send some search criteria to searchRecords and searchRecords return...