I'm getting an error when I navigate off a page in firefox before the script is finished loading. The error is a javascript alert that says Exception......
Like you said, the problem is that the server code is not finishing in time. You can tell ajaxCFC to fire the function and wait for the results before...
From what I understand, this is a serialization error that shows up in Firefox only. ( possibly in all of the Mozilla based browsers ) If you make all of your...
I fixed this error in the SVN, but haven't packaged it in a zip file yet. You can pull head of the SVN repo (engine.js file), or wait a few days until I...
OK, here's my first shot at Ajax. I spent a few minutes kicking around the echo example until I thought I understood how it worked. Then I set out to make a...
Thanks for that tip. But I still don't seem to get the getUSPS() function to fire onkeyup. Nothing happens at all. I even tried an alert first thing in the...
I found the link to the JQuery alpha on Robs site. If anyone else needs it: http://www.robgonda.com/blog/index.cfm/2007/1/8/jQuery-11-alpha-released-today -- ...
Are there any other AjaxCFC resources other than this yahoogroup? Like IRC or something else? I'm looking for some help getting up to speed with it....
Not that I know of, but feel free to fire questions our way. It's really not that hard though, if you download the examples and run through those you'll soon...
Hello Everyone, I have an application where a user can click on some text and the text become editable in a text area. This action is kicked off by an onClick...
I can't see anything wrong in your code. Have you viewed the source after an update to make sure your onclick event is there? ________________________________...
Jacob, Thanks for your reply below is the result I get after doing an alert to show me the what the onClick function looks like after i do the save the updated...
Ryan, As you suspect, the problem stems from how you reassign the event handler. The first time it gets assigned via the onClick attribute in your TD like ...
Larry, Thanks for your detailed reply. I've tried two of your suggestions, the eval and closure methods with no luck. Below is my code and results. ...
I have successfully implemented ajaxCFC in a couple other projects with no problems, however now I am getting a javascript alert "Object Error" after making a...
Sounds like you're testing in IE from the error. If so, there's a few IE ajax debuggers out there, hit google. I can't seem to find the site now, but I have...
... "Sounds like you're testing in IE from the error. If so, there's a few IE ajax debuggers out there, hit google. I can't seem to find the site now, but I...
I found this on Ben Forta's site a few minutes ago: http://www.netgrow.com.au/files/javascript_dump.cfm It does the same thing as sDumper but the resulting...
I've been using this particular javascript dump function for about a month now, and it's really awesome. It's really helped in debugging my javascript. It has...
ok here is my situation. I have a form of related select lists, the usual thing, select option from list1, it populates list2. This is a multi-page wizard...
For all of those who have switched over to AjaxCFC for jQuery, I wanted to ensure that you had all of the best jQuery resources available to you to help you...
Good Afternoon all, I'm having some strange behavior when the callback object is blank/empty. I'm returning a comment from a record and if the comment happens...
I am using ajaxcfc and cfsavecontent to include a large form on a page based on a certian client to avoid loading the form numerous times on page load. All of...