I saw you mention that in a previous post, but where do you put it? You said "in your Ajax component", but does that mean the CFC I'm using? Or does it mean...
Anyone here doing any JS modals with ajaxCFC interaction? I tried downloading jquery along with a plugin called Thickbox but some part of the jquery or...
From what I understand, the jQuery $() function conflicts with the AjaxCFC $() function. For this reason, you would not be able to use them together. dw ... --...
I had a similar problem last week in which the call back function was not running because another developer in our office had returned an empty value from the...
Good call. Damn, every single library out there implements their own version of the $() function: prototype, dwr, jquery ... and the one I like the most is...
Rob and Rey, thank you so much for getting back with me. I totally forgot about my post here until I noticed the replys on the RSS feed. I will look into the...
Ok, thanks Rob. ________________________________ From: ajaxcfc@yahoogroups.com [mailto:ajaxcfc@yahoogroups.com] On Behalf Of Rob Gonda Sent: Monday, December...
I'm trying to get DWRUtil (used through AjaxCFC) and jQuery to work together by renaming the $ function as you suggested, but it doesn't seem to be working. I...
line 59 of utils.js reads: if (!$ && document.getElementById) { that means it wont try to override an existing $() function. Try modifying that line to read if...
Brilliant - thanks Rob. For anyone else trying to make the DWRUtil.addRows and ajaxCFC work with jQuery, I ran into one other small issue. Most of the jquery...
Dylan, Why are you using DWRUtil.addRows at all? Why not use jQuery to do all of it? I haven't followed this thread enough to remember what your ultimate goal...
Thanks much for the slam ;) Honestly, if I hadn't had problems with this I wouldn't have posted the question. Just trying to help. After troubleshooting, I...
Hi All, Here is Akbar and i proud to join this ajaxCFC Community.I succesfully downloaded the required files for ajaxCFC and examples and i currently worked on...
I am using this: <cfcomponent extends="ajax" name="textualString" hint="get textual.text_string"> <cffunction name="getTextualString" returntype="string"...
Hi Mark, The error you're receiving is because the session variable you're trying to access isn't defined. Is your session variable actually defined? Try using...
Could this be the problem: // get value from input var a = document.getElementById('myselect').selectedIndex; var str = $('myselect')[a].value; I am using a...
I don't see how that would be the problem. CF thinks that you haven't turned Sessions on. do you have the CFApplication code that I suggested in you're...
The session vars are set in fusebox.init.cfm (and work in all pages and components) cfapplication sessionmanagement="Yes" is in index.cfm hardcode the session...
Mark, I don't know if this will directly relate to your situation, but I had problems once when I introduced ajaxCFC into my code. I had a Base.cfc, that all...