Ajax Framework

From Knowino
Revision as of 00:54, 26 March 2012 by Paul Wormer (talk | contributions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

An Ajax framework is a cross-browser framework or library that assists developers in the creation of rich Internet applications, that use Ajax.

Ajax frameworks consist of libraries written in either client-based JavaScript or nearly any server-based programming language to construct web applications through the Ajax engine, i.e., the suite of technologies that facilitates communication between client web browser requests and server without re-loading an entire page. Ajax can provide more interactivity to web applications and can improve their overall functionality. These frameworks are mostly free, and the majority of them JavaScript libraries of functions that simplify and standardize Ajax techniques.

While there are hundreds of Ajax frameworks available, there currently only about 20 heavily used or heavily written about frameworks that fall into 3 categories. While all simplify the creation of JavaScript-based dynamic based web applications, most are object-oriented packages that are written in JavaScript itself. However, several others are written in the server side scripting language PHP, others are written in Java, and a few exist for ASP.net and ColdFusion.

Contents

[edit] Background

Jesse James Garrett wrote an article for his company Adaptive Path entitled “Ajax: A New Approach to Web Applications” where he coined the word Ajax and defined its components and goals. In it, he describes the discrepancy between desktop applications and web applications. The impetus behind Ajax was to provide web pages with the technology to make them as rich and responsive as desktop applications. The most powerful real-time manifestation of this responsiveness is how Ajax technologies don’t require complete web page reloading every time a new request is made or new data is entered. Garrett defines Ajax as many existing technologies powerfully coming together to create a new user experience.

The components of Ajax include XHTML (Extensible Hypertext Markup Language) and CSS (Cascading Style Sheets), Dynamic Object Model (DOM); XMLHttpRequest and JavaScript. Ajax frameworks are designed to support these technological requirements and requests and facilitating Ajax programming.

[edit] Categories of Ajax frameworks

[edit] (X)HTML/CSS Supplement Frameworks

Classic examples of this type of framework are Prototype and JQuery. As is suggested by JQuery's tagline "The Write Less, Do More JavaScript Library", these frameworks attempt to add tools to a designers resource kit to simplify and standardize the JavaScript required to perform Ajax type actions.

Toward the goal of 'simplifying' these frameworks typically provide syntax that is reasonably cross-browser and future-proof. That is as new browsers are released and new vulnerabilities are discovered in older Ajax techniques, users of these frameworks should be able to simply update their framework library files with no or little modification to their original code.

Toward the goal of standardization, the adoption of these frameworks makes it relatively simple for an new programmer to walk into an existing project and make sense of the code.

The types of methods included by these frameworks can loosely fall into 4 categories.

[edit] Pure Ajax Methods

These libraries generally include a call-back system that attempts to simplify the creation and execution of HTTPXMLRequest objects and to simply the handling of a returned XML, JSON or (X)HTML response. A number of method signatures from JQuery are used in this section and the following sections. This is simply to illustrate the types of features that these frameworks add to traditional Javascript programming. Most other major frameworks, such as Prototype and ExtJS provide similar methods.

[edit] Event Handling Systems

"Event Handling" methods add generally add the ability to attach new actions to DOM elements. The following is a sample of the "Events" available from the JQuery Framework.

[edit] DOM/CSS Search and Selection Methods

These frameworks will also include code to assist in CSS and DOM searching, parsing and selection. The best way to explain these are probably just through example JQuery includes the following events:

[edit] Visual Effects

Once again an example of visual effects is probably most helpful. JQuery includes the following:

[edit] Basics
[edit] Sliding
[edit] Fading
[edit] Custom

[edit] (X)HTML/CSS Replacement Frameworks

The types of frameworks provide a complete GUI authoring environment. They tend to feature things like Layout Managers, Window, Frames, Progress Bars, multiple types or buttons and other feature that users would expect in a more traditional desktop GUI toolkit.

There are two approaches to this type of framework, some require and are tightly integrated with a Supplement Framework. Others provide a the complete package of GUI and Ajax tools in one package. Script.aculo.us is an example of the former since it requires and integrates well with the Prototype framework. ExtJS is an example of the latter, since it is one package that provides both types of functionality.

[edit] Server-End Technology Adapter Kits

These types of technologies are usually a component of a particular server technology that is generally used to generate (X)HTML/CSS and interact with a back-end database. These technologies includes Microsoft's .NET platform, Sun's Java, as well as open source technologies such as PHP, Python and Ruby.

Microsoft's ASP.NET AJAX is one of the more ambitious server technologies in that it allows developers working with Visual Studio 2008 and the .Net 3.5 platform to use a subset of Microsoft's graphical control to 'compile' an Ajax driven website. It must be mentioned that, at least as of August 2008, the number of controls available to ASP.NET AJAX is very limited. Generally users cannot simply recompile a desktop program for an Ajax target, but rather most project must be specifically designed for the ASP.NET AJAX platform do to it's current limitations.

On the other end of the server technology spectrum are projects like SAJAX which was originally a relatively simply PHP library that gives PHP programmers the ability to handle the XMLHttpRequest objects in their PHP code with having to handcode JavaScript handlers. SAJAX has now been ported to both Perl and Python[5]

A third variation on the server-side theme are the MVC frameworks that follow the Ruby on Rails MVC concept. Many of these frameworks, such as Rails, itself and Symphony for PHP, have integrated Ajax methods. Often these MVC frameworks will provide method that 'wrap' calls to one of the JavaScript library frameworks such as JQuery or Prototype.

The biggest difficulty with this type of framework is that if a developer requires a feature that is not explicitly included within the framework, extending the framework can be extremely difficult and require detailed know of both target platforms and the underlying server technology.

[edit] Table of Frameworks

Some of the most popular and interesting Ajax frameworks are:

Framework Name Platform Type What makes it interesting
ExtJS JavaScript Small codebase, powerful, in use by many clients
Prototype/Script.aculo.us JavaScript Completely free, high adoption among many large client, Prototype tends to handle data exchange while Script.aculo.us handle GUI effects. Allows uses of the smaller Prototype only codebase if you don't need fancy visual effect.
JQuery JavaScript Very popular, as of August 2008 seems to have a lot of 'momentum' from the developer community.
ASP.NET AJAX .NET 3.5 One of the most ambitious server-side Ajax frameworks. One of the very commercial Ajax frameworks to have gained support from developers

[edit] References

  1. http://docs.jquery.com/Ajax
  2. http://docs.jquery.com/Events
  3. http://docs.jquery.com/Traversing
  4. http://docs.jquery.com/Effects
  5. http://www.modernmethod.com/sajax/
Information.svg Some content on this page may previously have appeared on Citizendium.
Personal tools
Variants
Actions
Navigation
Community
Toolbox