Rob Gonda Rocks AJAX At The New York City ColdFusion User Group

Posted April 17, 2008 at 9:15 AM by Ben Nadel

Tags: ColdFusion

Yesterday, Rob Gonda flew up from Florida to give a presentation on AJAX in ColdFusion applications to the New York City ColdFusion User Group. It was an excellent presentation and one that was particularly useful to me since I am about to start architecting a rather large, AJAX-intensive application. While I have been using AJAX for some time, it has not been very pervasive in my programming. Rob definitely opened my eyes to some cool techniques that I will be exploring shortly.

One thing of particular interest was the technique in which he creates the call back code on the server and then just executes an eval() on it when it returns from the AJAX call. So, for example, if we passed back a value, he wouldn't do the OBJECT.innerHTML = returnValue in the client, he would build that Javascript on the server and then just execute it in the client - something like eval( returnValue ). That way, he keeps all of his logic on the server and keeps the client code extremely simple (relatively speaking). This is something I really want to look into.

I am trying to see if I can get Rob's sample code to post on the nycfug.com website. Stay tuned. And thanks to everyone who came to the meeting last night; the NYCFUG is really taking off and gathering some sweet momentum. Let's keep it going!


 
 
 

 
Ben Nadel And Rob Gonda At The New York ColdFusion User Group - AJAX In ColdFusion  
 
 
 


Reader Comments

Apr 17, 2008 at 10:32 AM // reply »
27 Comments

Great presentation. Thanks.


Apr 17, 2008 at 10:35 AM // reply »
10,640 Comments

@Dmitriy,

Thanks for always putting out the effort to get to our meetings (even when I know it is not convenient). It is HUGELY appreciated.


Apr 17, 2008 at 11:49 AM // reply »
27 Comments

Great determination and thrive for knowledge is my major factor for coming to the meetings. No matter, how much or what you know, there will always be this small thing that you never knew. This applies to non programming matters as well.


Apr 17, 2008 at 12:46 PM // reply »
10,640 Comments

That's what I'm talking about !


Apr 17, 2008 at 2:07 PM // reply »
16 Comments

Holy crap Ben. Project Huge is definitely working. Your forearm is bigger than Rob's head!! :P


Apr 17, 2008 at 2:09 PM // reply »
10,640 Comments

@Rey,

Ha ha ha ha :) Thanks (I am totally taking that as compliment).


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Feb 12, 2012 at 3:37 AM
Learning ColdFusion 8: CFImage Part III - Watermarks And Transparency
Hi Ben, Just to ask currently it is placed bottom right corner, if i need to replace the same rendered image on the bottom left side or in the bottom center, how that can be calculated. bottom ce ... read »
Feb 11, 2012 at 9:29 PM
Use jQuery's SlideDown() With Fixed-Width Elements To Prevent Jumping
I can't say how glad I am that I found your post. Thank you very much. ... read »
Feb 10, 2012 at 7:21 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
Update! Instead of $(eval(options.insertAfter)).after(data['insertData']); I now use: var ajaxNode = document.createElement('span'); var parent = $(eval(options.insertAfter))[0].parentNode; ... read »
Feb 10, 2012 at 6:18 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
encountered this same, what I consider, jQuery bug last week. I'm building a site in which I load some content via AJAX. This content contains Linkedin share button placeholders which Linkedin API ne ... read »
Feb 10, 2012 at 11:30 AM
Cross-Origin Resource Sharing (CORS) AJAX Requests Between jQuery And Node.js
After you understand the concepts here, this is an awesome cheatsheet for enabling CORS in just about anything http://enable-cors.org/ ... read »
JM
Feb 10, 2012 at 9:10 AM
My Safari Browser SQLite Database Hello World Example
@Amy, Here is a very good tutorial on how to use JOIN: http://www.sqltutorial.org/sqljoin-innerjoin.aspx ... read »
Feb 10, 2012 at 4:42 AM
Building A Twitter-Inspired RESTful API Architecture In ColdFusion
This is great, very useful Ben. I spotted a small typo in the api.cgm listing: <cfthrow type="Unauthroized" /> Cheers Stefan ... read »
Feb 9, 2012 at 10:35 PM
CFDirectory Filtering Uses Pipe Character For Multiple Filters (Thanks Steve Withington)
I was wondering if there would be a filter you could apply so that you got everything but what you included in the filter. As in show me all docs that are not a .pdf. ... read »