I was trying to run the examples that come with the latest Alpha of AjaxCFC with jQuery and get an error with the first DWRCompatibility.query example( ...
Unless you have some old code that still uses DWR, I'd say forget about using the compatibility stuff, you only need to include it if you plan to use any calls...
I am not married to one way or the other, just was looking for a solution for something at work. Since the server side piece of the example worked that is...
Thanks, I will look into the loading message later today when I make it in. In regards to finding the DWR harder to read, the only DWR line I have is this and...
Aaron Rouse said -- ... page ... submit, ... records ... just be ... While I'm not using inGrid with AjaxCFC, I am using it with Cold Fusion 8 and jQuery. I...
This particular application I am working on is using CF7 and do not foresee it going to CF8 for a long time, if ever since the IT Architects are pushing hard...
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...