Welcome!

Rob Gonda

Subscribe to Rob Gonda: eMailAlertsEmail Alerts
Get Rob Gonda via: homepageHomepage mobileMobile rssRSS facebookFacebook twitterTwitter linkedinLinkedIn


Latest Articles from Rob Gonda
On April 30, 1993, CERN announced that the World Wide Web would be free for anyone to use and the Web took off, jumping from 130 Web sites in 1993, to over 100,000 in 1996, to 11.5 billion sites in 2005. The main protocol used on the Web is the Hypertext Transfer Protocol (HTTP). It's ...
It's become very popular lately, even though it's not exactly new. It's been possible to use the concept behind AJAX since browsers introduced the XMLHttpRequest function in 1999. Enjoy Rob Gonda's highly popular ColdFusion Developer's Journal article on AJAX, the hottest software deve...
This release is the first one to include contributed content from Rob Gonda, Tom de Manincor, Brian LeGros, Sana Ullah and Aaron Roberson. The ColdBox Team and contributors are growing. So enjoy this release. The ColdBox website is also being renovated and will be launched soon. Develo...
Nitobi (http://www.nitobi.com) has announced it will support the ColdFusion platform in its suite of enterprise AJAX components. The ColdFusion edition of Nitobi Grid and Combobox offers support to newer as well as older versions of Coldfusion. The implementation enables a simple backw...
The AJAX News and Feed reader is an application written in ColdFusion using ajaxCFC, a free open source ColdFusion/AJAX framework, and a Model-View-Controller design pattern. It contains the basic functionality of taking an unlimited number of RSS 2.0 feeds as input, parsing the XML da...
JSEclipse is a new plugin for the Eclipse environment that helps developers code JavaScript faster and with no errors. With JSEclipse, you can complete a variety of tasks, from editing small sections of code to working with the next big AJAX library or developing plug-ins for a product...
Ever since the term AJAX was coined, the concept has spread like wildfire in developer communities. Lots of applications have been developed using AJAX. In fact, a lot of applications were developed using AJAX long before AJAX came into existence. In this section, we will go over some ...
AJAX is a viable way to develop richer, more interactive Web applications. These kinds of applications are typically referred to as 'Rich Internet Applications' (RIAs). RIA is a term that describes the next-generation Web applications that combine the performance and functionality of d...
Given the challenges associated with AJAX, it is particularly important to architect an AJAX application properly. Otherwise the result can be either lackluster performance or a code maintenance nightmare, or both.
AJAX has raised the awareness of the potential of Web applications. It has also deepened and broadened the use of JavaScript and DHTML in application development. There are significant benefits to AJAX, but there are also significant challenges.
AJAX changes the role of Web pages from being merely HTML documents into 'applications' that contain both HTML markup and code. And it changes the role of the 'server' from merely serving HTML pages to serving data too. In classic Web applications, Web servers serve HTML Web pages. Som...
'Ajax, shorthand for Asynchronous JavaScript and XML, is a web development technique for creating interactive web applications. The intent is to make web pages feel more responsive by exchanging small amounts of data with the server behind the scenes, so that the entire web page does n...
I finished today the implementation of AjaxCFC for jQuery. It's the same Ajax CF integration you already know, but using the jQuery Ajax engine. It supports full JSON and WDDX serialization, has improved error handling, improved log4javascript integration, still supports named and unn...
Check out my 2h 17mins AJAX presentation recording. I presented AJAX in various flavors to the Scottish CFUG last week and I promised to post the slides and files. You may check out the Adobe Connect Presentation, download the slides, and download the source code. Code includes example...
To encourage people to promote the jQuery project and get as many people involved in the community as possible, jQuery is holding a contest to build a 'Powered by jQuery' button.
There is quite a debate when using Ajax/DHTML on whether to use DOM nodes or innerHTML. I've been a follower of innerHTML, not only because it's easier, not only because you reuse the same view layer, but now also because it's indisputably faster.
It is not possible. Lol, well, ok.... the XMLHttpRequest cannot send multipart/form-data, therefore, cannot upload files. There are two ways around this.
This session, aimed at enterprise developers, will discuss how best to enrich your users' experience by the use of AJAX.
AJAX can make the HTML user experience almost as pleasant as Flash. The main advantage of Flash, in spite of its vector animations, is that you never reload the page. Flash Remoting allows you to interface with the server in the background and AJAX does exactly the same for HTML pages.
There is not better or worse when comparing these two techniques, but they are certainly different. While both of them allow you to communicate with the server in the background, you should choose the appropriate for your situation.
It's been one year since Jesse James Garret wrote the first article on Ajax, which gave a name to the existing technology and helped it to boom and reach magnitudes and a buzz never imagined by anyone before. It's still taking off, with new magazines, seminars, and articles everywhere.
Will web applications ever replace regular desktop applications? Will desktop applications adopt web paradigms? Are web applications 'Web 2.0'?
Enough said, since I include the file, I guess I need to support the built-in functionality, but the addRows out-of-the-box was accepting arrays and objects. I serialize the ColdFusion queries into a more complex object which was not recognized by the addRows function, so I modified it...
The latest fad in the Model-Glue list has been AJAX. How to incorporate Ajax requests to the Model-Glue framework. Is it pointing directly to the model? To the controller? or going thru the full cycle by pointing to index, then controller, model, back to the controller, and passing arg...
I just got hit with an email informing me that ajaxCFC will break when application.cfc adds code onRequest(start|end). I modified the framework to reset the content before the JavaScript response, and abort it at the end of the asynchronous call. I am not quite happy with the abort tho...
The buzzwords du jour are AJAX, RIA, Web 2.0... Both Adobe and Microsoft are involved and trying their best to get market share. Abode has Flash and Flex; and AJAX is compatible with every programming language and plays really well with CF (through ajaxCFC). Microsoft has been working ...
ajaxCFC now supports built-in improved security, enforcing get or posts verbs, and also optionally checks for the http-referer to match your site. These two checks will prevent a third party from monitoring HTTP packets and trying to call them manually by pasting the full AJAX request ...
It's become very popular lately, even though it's not exactly new. It's been possible to use the concept behind AJAX since browsers introduced the XMLHttpRequest function in 1999. AJAX isn't a technology, or a language, and there's no recipe to implement it; it's just a combination of ...