YOUR FEEDBACK
More on the Software Assembly Question - Do Design Patterns Help?
Yanic wrote: Hi, > UML and MDA are being changed to be more data and doc...
SOA World Conference
Virtualization Conference
$50 Savings Expire May 23, 2008... – Register Today!


2007 West
GOLD SPONSORS:
Active Endpoints
Your SOA Needs BPEL for Orchestration
BEA
Virtualized SOA: Adaptive Infrastructure for Demanding Applications
Nexaweb
Overcoming Bandwidth Challenges with Nexaweb
TIBCO
What is Service Virtualization?
SILVER SPONSORS:
WSO2
Using Web Services Technologies and FOSS Solutions
Click For 2007 East
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts
SYS-CON.TV
TOP COLDFUSION LINKS


Flash Forms to the Rescue
The checkbox issue

Digg This!

Six months ago I was anxious to get the chance to upgrade our Web servers to Adobe ColdFusion MX 7 Enterprise Edition. During a product re-design, I realized how advantageous it would be for our customers to start using the new Flash Forms feature versus the standard HTML tables they had been using for years. The sorting and scrolling capabilities alone would be a hit.

Initially I thought that the Flash Forms would function like other HTML forms, but, as it turned out, there were some definite quirks to be dealt with. Fortunately I was able to resolve all the issues except one, which kept me stumped. I read up as much as possible online, using sites such as ASFusion.

The Problem
Our Web application had tables of data throughout the site. The first column of each table was always a checkbox so the user could check off whatever record he wanted to modify. The checkbox contained the primary key value for each of the records.

The issue with moving to Flash Forms was that there was no apparent checkbox-type functionality built-in. What needed to be done, to ASFusion's credit, was to introduce a new Bit column into the database table and show the column in the Flash Form as editable.

Here is some sample code that works well with Microsoft SQL Server.

Before:
SELECT *
FROM tblCustomers

<cfgridcolumn name='custID' display='no' />
<cfgridcolumn name='customerCode' header='Code' select='no' width='65' />
<cfgridcolumn name='username' header='Username' select='no' width='65' />

After:
SELECT *, checked=''
FROM tblCustomers

<cfgridcolumn name='checked' header="" type="boolean" width='25' />
<cfgridcolumn name='custID' display='no' />
<cfgridcolumn name='customerCode' header='Code' select='no' width='65' />
<cfgridcolumn name='username' header='Username' select='no' width='65' />

As you can see, cust ID is the hidden primary key column, and I added a cfgrid column called "checked" to reflect the new database column. By default none of the columns are checked since the SQL value for each column is empty. You'll also notice that none of the columns are selectable except the "checked" cfgrid column. That means the column can be checked on and off by the user just like the checkboxes before.

And I thought I was done.

The Problem (Continued)
What I found was that I could easily check off the record I wanted and get the custID to show on the other end. However, there was a problem. In HTML you can check and uncheck checkboxes and it returns a value only when the item is checked. In Flash Forms, when the item is essentially "touched," it becomes on. In other words, I would check a box, uncheck it, and submit the form, and it would show the custID of the one I checked and unchecked because Flash Forms thinks this record was "edited". This was going to be a problem. How was I to determine which item was "truly checked" versus which record was just "touched"?

The Solution
After checking around, I found myself alone in trying to find a solution. In essence what I needed was a piece of code that would parse through the submitted form fields and return the Primary Keys necessary for me to go about my work.

Here's a breakdown of the custom tag I developed to help resolve this issue. Note: This tag is in beta and will undergo some additional cleanup and should be posted on my blog soon.

The Custom Tag <!---
Problem: Flash Form Grids with CheckBoxes, when submitted, return all items that were checked AND unchecked, i.e. Edited.

Solution: getIDSelectedFromFlashFormGrid.cfm, with the user-specified hidden ID column name that's passed over via Flash Forms grid, cleans up the returned form scope, returning only IDs of the items that were truly selected.

Note: In Progress, works as is, Copyright Sami Hoda (c) 2005-06

Usage: <cf_getIDSelectedFromFlashFormGrid ID="**Primary Key Column Name **">

Output: variable listSelected, list of Primary Keys selected
--->

<CFSETTING ENABLECFOUTPUTONLY="YES">

<CFPARAM NAME="Attributes.ID" default="" type="string">

<!--- Checks to see how many checkboxes were 'touched' assuming checkboxes were named checked --->
<cfset numEdited = ArrayLen(GRID.checked)>

<!--- Clean form values by getting only values for 'GRID.*' and make a query of those values without the 'GRID.' prefix --->
<cfset newQ = queryNew("name,value")>

<cfloop collection="#form#" item="i" >

    <cfif left(i,5) EQ "GRID." and left(i,13) NEQ "GRID.ORIGINAL" AND left(i,14) NEQ "GRID.ROWSTATUS">
      <cfset temp = queryAddRow(newQ)>
      <cfset wOutGrid = right(i, len(i) - 5)>
      <cfset temp = QuerySetCell(newQ, "name", "#wOutGrid#")>
      <cfset temp = QuerySetCell(newQ, "value", "#Evaluate(i)#")>
    </cfif>

</cfloop>

<!--- Loops through the array values dependent on the number 'touched' and create a new proper query with simple values --->
<cfif numEdited GT 0>
   <cfset newQQ = queryNew("ID")>
   <cfset temp = queryAddRow(newQQ,numEdited)>

    <cfloop index="z" from="1" to="#numEdited#" >
       <cfset temp = QuerySetCell(newQQ, "ID", z,z)>
       <cfset count = 1>
       <cfloop query="newQ">

     <cftry><cfset temp = queryAddColumn(newQQ, #newQ.name#, arrayNew(1))><cfcatch
     type="any"></cfcatch></cftry>
     <cfset foo = newQ.value[count]>
     <cfset fooboo = foo[z]>
     <cfset temp = QuerySetCell(newQQ,newQ.name, fooboo,z)>
     <cfset count = count + 1>
    </cfloop>
   </cfloop>

</cfif>

<!--- Now, from the clean query, get only those who were truly selected, not just 'touched' --->
<cfquery dbtype="query" name="getSelected">
    SELECT *
    FROM newQQ
    WHERE checked != 'false'
</cfquery>

<cfset myList = "">
<cfoutput query="getSelected">
    <cfset myList = ListAppend(myList,#evaluate(Attributes.ID)#)>
</cfoutput>
<cfset caller.listSelected = myList>

<CFSETTING ENABLECFOUTPUTONLY="NO">

So, on my target page, I can write code like this:

<cfset numEdited = ArrayLen(GRID.checked)>
<cfif numEdited EQ 0>
<cflocation url="#errorURL#">
</cfif>

<cf_getIDSelectedFromFlashFormGrid ID="custID">

And now a variable called "listSelected" gives me a clean list of custIDs to use.

Some of the changes I have planned for the Custom Tag include:

  • Naming the return variable
  • Renaming variables for consistency
  • Enhanced comments inside the code
  • Enhanced error checking
  • Speed enhancements
So I hope this shows how you can effectively use checkboxes inside Flash Form grids now.
About Sami Hoda
Sami Hoda is an 11-year IT and Web development veteran with degrees in Computer Information Systems and Management & Human Resources. You'll find him reading profusely and passionate about best practices.

SYS-CON Italy News Desk wrote: Six months ago I was anxious to get the chance to upgrade our Web servers to Adobe ColdFusion MX 7 Enterprise Edition. During a product re-design, I realized how advantageous it would be for our customers to start using the new Flash Forms feature versus the standard HTML tables they had been using for years. The sorting and scrolling capabilities alone would be a hit.
read & respond »
CFDJ LATEST STORIES . . .
AJAX World – Personal Branding Checklist
This is a checklist of items you need for an all-encompassing personal branding strategy. Personal branding is the process of marketing and selling yourself as a brand in order to gain success in business. Personal branding is a continual process just as knowing yourself is a continual
3rd International Virtualization Conference & Expo: Themes & Topics
From Application Virtualization to Xen, a round-up of the virtualization themes & topics being discussed in NYC June 23-24, 2008 by the world-class speaker faculty at the 3rd International Virtualization Conference & Expo being held by SYS-CON Events in The Roosevelt Hotel, in midtown
What Is ColdFusion in the Age of Java?
As CFML developers start to learn Java and move into the realm of Spring and Hibernate, it is very important to stop and ask 'What Is ColdFusion?'. ColdFusion, since CFMX, has been a J2EE application running within a J2EE server (JRun, JBoss, Tomcat, Websphere, etc.). This is important
Opinion: Give ColdFusion Some Room to Breathe
My personal approach has become to to let ColdFusion do what it does best, and no more. No AJAX generation or any of that silly UI stuff. Leave that to the AJAX frameworks, or Flex, or whatever your UI is going to be on the front-end. That's what the UI tool was designed for, CF wasn't
Viewpoint: Not Every ColdFusion Developer Should Be A Flex Developer
I am going to go ahead and contend that although a good number of ColdFusion developers can grasp and understand Flex very well, there are also a good number of ColdFusion developers who have no business going anywhere near Flex. Why do I say this? I am a big fan of Flex. I use it dail
JavaOne 2008: Sun Talks Up its Late-to-the-Party AIR-Silverlight Rival
At Java One this week Sun has been selling its year -old-but-still-upcoming - and definitely late-to-the-party - Adobe AIR- and Microsoft Silverlight-competitive JavaFX Rich Client environment as a potential revenue-generator capable of putting ads on mobile applications and JavaFX Scri
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON FEATURED WHITEPAPERS

ADS BY GOOGLE