Search the web
Sign In
New User? Sign Up
ajaxcfc · ajaxCFC Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1046 - 1075 of 1584   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1046
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...
Munson, Jacob
yacoubean
Offline Send Email
Dec 1, 2006
4:42 pm
1047
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...
Ryan
phidelt1350
Offline Send Email
Dec 1, 2006
8:33 pm
1048
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 ... --...
Dan Wilson
klar1ty
Offline Send Email
Dec 1, 2006
9:02 pm
1049
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...
Dylan
dylanglockler
Offline Send Email
Dec 4, 2006
4:17 pm
1050
At the top of your component, outside of any function. e.g. <cfcomponent extends="ajax"> <!--- abort immediately after Ajax request ---> <cfset...
Rob Gonda
z0mb1e7
Offline Send Email
Dec 5, 2006
3:00 am
1051
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 Gonda
z0mb1e7
Offline Send Email
Dec 5, 2006
3:07 am
1052
Guys, Another method of having jQuery co-exist with DWR/AjaxCFC is to rename the jQuery $ method. You can do something like this: <script...
Rey Bango
reybango
Offline Send Email
Dec 5, 2006
3:37 am
1053
Nice one Rey, thanks. ... "Dan ... some part ... exisiting...
Rob Gonda
z0mb1e7
Offline Send Email
Dec 5, 2006
3:46 am
1054
No sweat man....
Rey Bango
reybango
Offline Send Email
Dec 5, 2006
3:58 am
1055
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...
Ryan
phidelt1350
Offline Send Email
Dec 5, 2006
5:58 pm
1056
Ok, thanks Rob. ________________________________ From: ajaxcfc@yahoogroups.com [mailto:ajaxcfc@yahoogroups.com] On Behalf Of Rob Gonda Sent: Monday, December...
Munson, Jacob
yacoubean
Offline Send Email
Dec 5, 2006
6:40 pm
1057
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...
Dylan Glockler
dylanglockler
Offline Send Email
Dec 5, 2006
9:19 pm
1058
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...
Rob Gonda
z0mb1e7
Offline Send Email
Dec 6, 2006
2:44 am
1059
This worked for me Rob!!! Thanks alot! Ryan ... 'addRows'...
Ryan
phidelt1350
Offline Send Email
Dec 7, 2006
6:58 pm
1060
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
dylanglockler
Offline Send Email
Dec 7, 2006
9:35 pm
1061
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...
Christopher Jordan
c_s_jordan
Offline Send Email
Dec 7, 2006
10:13 pm
1062
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...
daemach
Offline Send Email
Dec 7, 2006
10:33 pm
1063
Ah, good to know. I always just press the END key to see the output :)...
Rob Gonda
z0mb1e7
Offline Send Email
Dec 9, 2006
1:44 am
1064
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...
akbarsaitn
Offline Send Email
Dec 12, 2006
11:02 am
1065
I have: <cfcomponent extends="ajax" name="textualString" hint="get textual.text_string"> <cffunction name="getTextualString" returntype="string" hint="get ...
akaidr4vr
Offline Send Email
Dec 15, 2006
1:11 am
1066
I am using this: <cfcomponent extends="ajax" name="textualString" hint="get textual.text_string"> <cffunction name="getTextualString" returntype="string"...
Mark Ireland
akaidr4vr
Offline Send Email
Dec 15, 2006
1:13 am
1067
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...
Rey Bango
reybango
Offline Send Email
Dec 15, 2006
1:33 am
1068
Mark, Do you have session variables turned on via your CFApplication statement? for example: <CFApplication SessionManagement="true" ...
Christopher Jordan
c_s_jordan
Offline Send Email
Dec 15, 2006
3:40 am
1069
Could this be the problem: // get value from input var a = document.getElementById('myselect').selectedIndex; var str = $('myselect')[a].value; I am using a...
Mark Ireland
akaidr4vr
Offline Send Email
Dec 18, 2006
4:14 am
1070
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...
Christopher Jordan
c_s_jordan
Offline Send Email
Dec 18, 2006
2:30 pm
1071
I havent worked out why but the session variable causing the problem is #session.db.dsn# Huh?!? (exactly the same issue occurred with myAjax) ... ...
Mark Ireland
akaidr4vr
Offline Send Email
Dec 19, 2006
5:11 am
1072
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 Ireland
akaidr4vr
Offline Send Email
Dec 21, 2006
3:42 am
1073
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...
Christopher Jordan
c_s_jordan
Offline Send Email
Dec 21, 2006
2:28 pm
1074
Hello everybody some days ago i've discovered a new dump library that dump any variable like coldfusion... ...
Erick Rodriguez
tberickrodri...
Offline Send Email
Dec 26, 2006
5:25 pm
1075
Erick, I think this sounds excellent. How would I use this in my code? Just call getExceptionFile()? ________________________________ From:...
Munson, Jacob
yacoubean
Offline Send Email
Dec 26, 2006
5:36 pm
Messages 1046 - 1075 of 1584   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help