Glad THAT's Over, But ...
Well, I finished that monster prototype, with much credit to my coding partner, Maciej. I figured that over 11 days, I worked 165 hours. Whew! Yesterday, we gave the presentation to a large multi-national corporation. To my relief and gratification, they were very impressed. Which leaves me, now, with only one small problem...
Learning jQuery, Day 14: Checkbox Quick Selection
I'm part of a select group of developers who have access to a secret web app called "Google Mail". Since you, doubtless, are unfamiliar with this software (I did say "select", after all), let me explain how it works.
Learning jQuery, Day 13: Adding Metadata
In earlier posts on this topic, I suggested that you split your "view" into two files -- one that is pure HTML (and the CFML you may need to process the view) and another one that holds your JavaScript and jQuery. One of the nice features of this is that it allows for unobtrusive JavaScript -- meaning that there's no JavaScript mixed in with HTML, making it possible (if you wish) to have a site that works both with JavaScript enabled and disabled.
Today, let's see how we can pass information to jQuery that it may need to do its job.
Learning jQuery, Day 12: Inline Editing
We're all familiar with the process of showing content to a user and letting them edit it by means of perhaps an "Edit" button that takes them to a form. Today, let's look at a different way: allowing users to do inline edits in an unobtrusive manner.
Learning jQuery, Day 11: Saving Table State with Cookies
We use a simple jQuery tablesorter to allow users to sort tables by various columns, but at times, users want to restrict their view of table rows -- perhaps only viewing rows of a certain type. Today, we'll look at how to do this with some jQuery and POJS (plain old JavaScript).
Learning jQuery, Day 10: Keeping Queues in Sync
I've been working on a job where different people in different places are working off of a shared queue of work orders to be processed. When they first log onto the system, they see the current work orders and their status in a table. (Don't tell the CSS police that I used the "T" word...) The problem is that, as existing work orders are processed and new work orders are submitted, their screens quickly are out of sync.
Learning jQuery, Day 9: JavaScript's "this" variable
Today we won't actually be looking at jQuery, but about JavaScript itself. While jQuery is a terrific library, it's simply an abstraction of JavaScript methods for interacting with the Document Object Model (DOM). An abstraction is a wonderful thing, but it shouldn't be a substitute for understanding the base model -- JavaScript, in this case. Today, we'll look at one of the more confusing aspects of JavaScript: the "this" variable.
Learning jQuery, Day 8 : Preventing Form Double-Processing
Today is a quick tutorial on how to prevent the problem of a user clicking the "submit" button more than once -- usually in the case of a slow-responding form processing page.
Learning jQuery, Day 7 : Sortable Checked Lists
In Day 6 of Learning jQuery, I mentioned a project we had completed that dealt with work orders. Part of the job entails office staff processing completed work orders. In their line of business, they want certain staff members to process certain work order types -- and in a certain order. Let's use some jQuery to make this happen.

