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


Easy Flash Dashboards
Using CFMX-delivered dynamic data

Digg This!

Dashboards are user interfaces that organize and present information intuitively, usually with graphical elements. The information is often aggregated from several sources (databases, operational metrics, log files, etc.) and summarized. They are often used by decision or policy makers.

Using CFMX v7's <cfform...> tag, you can build Flash-based forms whose "controls" look much like those found on standard "fat clients"; you can also build charts and graphs. However, combining them in a typical dashboard application results in a rather hodgepodge look-and-feel. Of course, you can hand-code Flash reports and create dial-like controls and eye-catching animations if you have the necessary expertise and time, but if you lack either, you might want to take a look at Crystal Xcelsius (CX). This article briefly describes the product and shows how to deploy very slick-looking, interactive, Flash-driven dashboards using CFMX-delivered dynamic data. It assumes you've installed the CX development software, the IDE.

As it's common practice to import corporate data into spreadsheets for presentation and decision-making purposes, CX's functionality is based upon Excel. Therefore, to build a CX dashboard you must create a spreadsheet containing the data tables (defined rows and columns) and cells that will ultimately be transformed into graphical "eye candy." After performing this step and saving the spreadsheet, the CX IDE is opened, a new project created, and the spreadsheet imported into the project; the latter can be thought of as embedded data structures. You now have the data; the next step is to construct charts, dials, sliders, and other components. Wizards then help you map the data to the component(s). The last step within the CX IDE compiles the dashboard into a Flash file (with suffix .swf), which can be sent to users via e-mail or deployed to a Web server for browser viewing.

Let's look at an example.

Figure 1 shows one tab of a dashboard containing six Flash components. Starting from the top right and viewing clockwise, notice:

  1. The multi-colored chart showing the output from each of several different service groups for each month of 2005
  2. A button titled "Chart Selected Year" (a specific instance of a component called an "XML Data Button")
  3. A combo box for choosing a year
  4. A list box for choosing the type of output to be shown (in this case, either the number of contracts or the total $ contract amount for each service group)
  5. A dial showing "Contracting Workload"
  6. An alert showing the workload trend
The data shown on this, or any dashboard for that matter, can be static or it can be dynamic. If static, it means the data resides in the spreadsheet embedded within the compiled Flash file. If dynamic, it means the data would be retrieved from, say, a back-end database. This is made possible by the XML Data Button component, which sends data from the Flash executable to a back-end CF application, receives the response, repopulates the embedded spreadsheet's tables and cells, and refreshes the visual components. This essentially gives you Flash remoting without a lot of hassle.

In our example, the input combo box is configured to show a range of years that is mapped to a column of spreadsheet cells containing those year-values; its output (the year chosen by the user) is mapped to one of those spreadsheet cells. When the user hits the "Chart Selected Year" button, the value in that one cell is wrapped into an XML packet and sent to a ColdFusion action template that has been designated by a URL in the wizard. At the CF server, the XML packet is parsed and the value (the year in this case) is passed into a database query; data from a static file could, of course, be returned as well. The CF server then wraps the query resultset into an XML packet for return to the Flash file and subsequent display (see Listing 1).

The XC IDE generates the entire structure of the XML packet for sending to and receiving from the CF server, thus simplifying the job of parsing the XML in code. Figure 1 shows four sections of CF code handling these back-end tasks.

Section 1: The data passed in from the .swf is converted (by the CF server) into a struct with an extraneous name=value pair ("FIELDNAMES"), which is removed in this section. What remains is the #form# variable with only the original XML packet created by the .swf file.

Section 2: To prevent the XML parser from throwing an error, the entire #form# variable is changed to lower case. Next, an XML tree object is created and the data (in this case, the year) is extracted.

Section 3: The database is queried by a stored procedure call with the year passed in as the input parameter.

Section 4: The returned cfquery is converted into an XML string for delivery back to the Flash file.

Workflow
We've developed enough dashboards to recognize that it's an iterative process, usually involving an XC "power user," a business expert who knows what data should be displayed, an IS analyst who knows the backend database, and a CF developer.

Summary
The product can be seen as complementary to and as an extension of existing CFMX functionality. The Xcelsius/Flash deployables can, of course, do more than dashboards. Indeed, there are an impressive number of configurable components available within the XC IDE (see the XC Web site: www.xcelsius.com/Products/XL_products.html). The vendor also has a component that purports to offer dynamic messaging between the Flash executable and Web services; however, we couldn't get it to work and, given that the equivalent XML data button serves our intranet purposes well, we didn't try to solve that problem. The documentation, unfortunately, is replete with .asp code and examples but not .cfm code.

About Tim Burton
Tim Burton is the eGovernment Applications Architect for a large state agency in Oregon and has been writing CFML since 1998. This is his third career; he previously practiced medicine and made art (metal sculpture).

The Dashboard Spy wrote: Thanks for the nice article. Flash-based dashboard presentation has become very hot indeed. There are plenty of screenshots of flash-based dashboards at http://dashboardspy.wordp ress.com
read & respond »
CFDJ LATEST STORIES . . .
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
AJAX World - Xceed Launches Microsoft Silverlight 2 Control
Xceed launched Xceed Upload for Silverlight, the commercial offering in support of Microsoft's promising new Silverlight technology. The product is available now for purchase or as a fully functional 45-day trial on Xceed's website. Xceed Upload for Silverlight lets developers add uplo
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