Google Gears Presentation

Categories: Google, Javascript

I presented on Gears, which is a set a tools available to Web Developers to build more compelling web application. So, its all about offline, right? Well — kinda. Gears exposes new modules and capabilities to the browser that provide general purpose building blocks for web applications to unlock the capabilities of the local machine in a safe manner.

Read More

AJAX Libraries API from Google

Categories: Google, Javascript, Web2.0

As you might have heard, Google has joined the ranks of AOL and others with their newly released AJAX Libraries API.  What does this mean for you as a developer?  Well, Google will now provide hosting of various JS libraries.  So, you get the power of Google to serve the file to your clients, so you can depend on their reliability and incredible speed.

Read More

Enumerating with Ext.js

Categories: Javascript

One of the features of the prototype library that I like to use is the Enumerable class.  Although highly debatable in regards to the legitimate necessity for such class, I like the simplicity and beauty of using Prototype’s enumerable class.

So, when using Ext as a base library (not using the Prototype adapter) for JavaScript DOM manipulation I looked into the enumeration methods available, such as Ext.each().  Here is a quick overview of how I used Ext.each to traverse members of a collection of HTML nodes.  I decided to split this up into main topics; first I will talk about why I like to use the enumerable class, and then show you a simple example of using the Ext.each() method.

Read More

Set cfwindow title from cfgrid

Categories: ColdFusion, ColdFusion 8, Ext, Javascript

If you are using ColdFusion 8’s <cfgrid> tag for a CRUD interface you might be utilizing the editable grid feature or you might be utilizing the <cfwindow> tag.  Because of some of the limitations of inline editing, such as the lack of a rich text editor, I am using <cfwindow> for a project and here is how I am setting the title programmatically from the <cfgrid> binding.

Read More

CF8 determining if request is Ajax

Categories: AJAX, ColdFusion, ColdFusion 8, Ext, Javascript, Web2.0

Have you ever wanted to know if a request is coming from an Ajax call or from a standard GET/POST from the browser when using the ColdFusion 8 Ajax functionality?

Read More

HistoryTabs - tab navigation with history

Categories: AJAX, Javascript, Web2.0

HistoryTabs.js is a Prototype class to make tabbed navigation with history management simple.  Designed for simplicity and convenient Ajax navigation using a tabbed interface that maintains the state of the  browser’s back and forward buttons. 

Interested? Read more and download HistoryTabs.

Read More

Ext 2.0 IDE

Categories: Ext, Javascript

In case you missed Jack’s post, check it out: IDEs and tools for Ext JS 2.0.  He goes over several options that developers have when it comes to using an IDE to streamline their Ext 2.x coding.

Read More

Impact of using CF8’s Ext on my home page

Categories: ColdFusion, ColdFusion 8, Javascript

Jax commented on my last post regarding the load time of my new homepage.  I definitely noticed the load time increase dramatically after implementing ColdFusion 8’s <cfwindow>, <cfdiv>, and <cfform> tags instead of just using Prototype/scriptaculous with a custom JS/CSS file.  Here is a quick summary of what I found.

Read More

New home page launched

Categories: ColdFusion, Javascript

I have launched a new home page for my site, which utilizes ColdFusion 8’s <cfwindow> and <cfdiv> tags, along with heavy use of Prototype and Scriptaculous.

Read More

CFGRID without CF8: Ext.CFC

Categories: ColdFusion 8, Ext, Javascript

A while back I decided that it would be cool to write an Ext CFC that would perform all most of the interfacing between ColdFusion and the Ext JS library.  This was so long ago, that I don’t even remember when I started working on the project in my free time.   I looked at the created date of the file, and it looks like I started this on April 17, 2007 (which might have been before Adobe announced that CF8’s <CFGRID> was to use the Ext library).  Anyways, a fellow ColdFusion programmer, Isaac Sunkes, was asking about using the Ext library without CF8, which brought back the memories of working on this CFC.  So, without further ado…

Read More