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...
I'm using the form plug-in for validation but I'm having a tough time trying pass the form variables to AjaxCFC. I'm using formSerialize() which returns...
I would recommend, that your getRecordsResult handle the query as well as the building of your HTML table. Don't use javascript to build the table. In your CFC...
Thank you so much for your help. It is working now. Farrah geneaiello123 <programmer_neo@...> wrote: I would recommend, that your getRecordsResult handle...
I'm just wondering what the status of this project is? Jquery has made a lot of changes since the last version of this framework and CF frameworks in general...
Using cfajax.... why is this not working.. $('#outerSiteMesage').style.display='block'; This is the error I'm getting.. "object does not support this property...
Better to use: $('#id').css({"display":"block"}); From: ajaxcfc@yahoogroups.com [mailto:ajaxcfc@yahoogroups.com] On Behalf Of Ryan Sent: Monday, September 01,...
I will be out of the office starting 12/04/2008 and will not return until 12/09/2008. I will respond to your message when I return. If your issue is urgent,...
Hi all, I don't know if this is a problem with the ajaxCFC or not so I'm hoping someone else has experienced it. We have the ajax files in: /assets/ajax Now,...
Hi Dave, Looking in the web logs are these calls to index.cfm all from the same IP address block? I am thinking it might be a (PC) firewall doing advanced...
No, they are coming from different IP addresses (internal to our corporate network) and they are client machines. There are other get requests from the same...
I having a tough time trying to access a value from my return. Below is my ajax call: $.AjaxCFC({ url: '/cfc/ups.cfc', method: 'getShippingOptions', data:...
This is a matter of case sensitivity. JavaScript is case sensitive, and for some reason object properties are returned all uppercased. Look at the dump and...
I was trying to organize my code somewhat and separate my cfc files. I can't seem to access anything other than the first CFC file. e.g., $.AjaxCFC({ url:...